Update dependency pytest-cov to v6 (#82) #98
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: Python package | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
python-ci: | |
runs-on: ubuntu-latest | |
steps: | |
#---------------------------------------------- | |
# check-out repo and set-up python | |
#---------------------------------------------- | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
architecture: "x64" | |
#---------------------------------------------- | |
# install & configure poetry | |
#---------------------------------------------- | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
installer-parallel: true | |
#---------------------------------------------- | |
# install dependencies if cache does not exist | |
#---------------------------------------------- | |
- name: Install dependencies | |
run: poetry install --no-interaction --no-root | |
#---------------------------------------------- | |
# Permanent venv activation | |
#---------------------------------------------- | |
- name: Activate virtualenv | |
run: | | |
source .venv/bin/activate | |
echo PATH=$PATH >> $GITHUB_ENV | |
#---------------------------------------------- | |
# run test suite and output coverage file | |
#---------------------------------------------- | |
- name: Test with pytest | |
run: | | |
pytest --cov-branch --cov=src --cov-report=xml tests | |
#---------------------------------------------- | |
# lint and formatting | |
#---------------------------------------------- | |
- name: Lint with Ruff | |
run: | | |
ruff check --output-format=github . | |
#---------------------------------------------- | |
# upload coverage stats | |
#---------------------------------------------- | |
- name: Upload coverage | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml | |
fail_ci_if_error: true |