Skip to content

Merge pull request #10 from mscheltienne/patch-1 #18

Merge pull request #10 from mscheltienne/patch-1

Merge pull request #10 from mscheltienne/patch-1 #18

Workflow file for this run

name: 'Tests'
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }}
cancel-in-progress: true
on: # yamllint disable-line rule:truthy
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
pytest:
continue-on-error: true
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -el {0}
strategy:
matrix:
os: ["ubuntu-latest"]
python: ["3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: pip install -ve .[tests]
- run: pytest tests