chore(deps): bump pytest from 8.3.1 to 8.3.2 #135
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint and Test | |
on: | |
push: | |
branches-ignore: | |
- develop | |
- main | |
- gh-pages | |
pull_request: | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
# Test the most recent version Python 3 release | |
- '3.x' | |
# Test older version still in use by some distributions | |
- '3.9' | |
name: Test python ${{ matrix.python-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: pip install -r requirements-dev.txt | |
- run: pytest --cov-fail-under=57 |