Skip to content

Merge pull request #94 from ska-sa/dependabot/pip/requests-2.32.0 #401

Merge pull request #94 from ska-sa/dependabot/pip/requests-2.32.0

Merge pull request #94 from ska-sa/dependabot/pip/requests-2.32.0 #401

Workflow file for this run

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' }}