Skip to content

Update tests to use f-strings and markers #7

Update tests to use f-strings and markers

Update tests to use f-strings and markers #7

Workflow file for this run

name: Run tests
on:
push:
branches: ['main']
pull_request:
jobs:
setup:
runs-on: ubuntu-latest
outputs:
strategy: ${{steps.load.outputs.strategy}}
steps:
- uses: actions/checkout@v3
with:
repository: colcon/ci
- id: load
run: echo "strategy=$(echo $(cat strategy.json))" >> $GITHUB_OUTPUT
pytest:
needs: [setup]
strategy: ${{fromJson(needs.setup.outputs.strategy)}}
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{matrix.python}}
- uses: colcon/ci@v1