Skip to content

chore(deps): bump actions/download-artifact from 6 to 8 #227

chore(deps): bump actions/download-artifact from 6 to 8

chore(deps): bump actions/download-artifact from 6 to 8 #227

Workflow file for this run

name: Coverage
on: [push, pull_request]
jobs:
cov:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install dependencies
run: pip install '.[test]'
- name: Run tests and collect coverage
run: pytest --cov --junitxml=junit.xml -o junit_family=legacy --ignore=test_libraries
- name: Upload coverage to Codecov
if: ${{ !cancelled() }}
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}