Bump all dependencies to the latest for testing #388
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: Unit tests | |
on: [push, pull_request] | |
concurrency: | |
group: test-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, macos-latest] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
include: | |
- python-version: "3.10" | |
coverage: "yes" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
- run: pip install -U pip setuptools wheel | |
- run: pip install -r requirements.txt | |
- run: pip install --no-deps -e . | |
if: ${{ matrix.coverage == 'yes' }} | |
- run: pip install --no-deps . | |
if: ${{ matrix.coverage != 'yes' }} | |
- run: pip check | |
- run: pytest -Werror --cov=aiokatcp --cov-branch | |
- run: pre-commit run --all-files | |
- run: coveralls --service=github | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
if: ${{ matrix.coverage == 'yes' }} |