Skip to content

Switch to a raw string for the prepare_release cli. #127

Switch to a raw string for the prepare_release cli.

Switch to a raw string for the prepare_release cli. #127

Workflow file for this run

name: catkin_pkg-ci
on:
push:
branches: [master]
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-22.04, macos-latest]
python: ['3.7', '3.8', '3.9', '3.10']
include:
- os: ubuntu-20.04
python: '3.6'
name: catkin_pkg tests
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{matrix.python}}
uses: actions/setup-python@v4
with:
python-version: ${{matrix.python}}
- name: Install dependencies
run: |
python -m pip install -U -e .[test]
- name: Run tests
run: |
python -m pytest -s test