Skip to content

Track del statement protocol methods (D7) #20

Track del statement protocol methods (D7)

Track del statement protocol methods (D7) #20

Workflow file for this run

name: Coverage
on:
push:
branches: [ master ]
jobs:
codecov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Generate coverage report
run: |
pytest tests/ -v --cov-branch --cov-report=xml:coverage.xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}