Skip to content

Dependencies: Bump codecov/codecov-action from 4.5.0 to 4.6.0 #95

Dependencies: Bump codecov/codecov-action from 4.5.0 to 4.6.0

Dependencies: Bump codecov/codecov-action from 4.5.0 to 4.6.0 #95

Workflow file for this run

name: Coverage
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Setup Python
run: uv python install
- name: Run tests
run: |
uv run tox -e coverage
uv run tox -e report
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.6.0
with:
token: ${{ secrets.CODECOV_TOKEN }}