Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Dependencies: Bump sphinx from 8.0.2 to 8.1.3 #96

Dependencies: Bump sphinx from 8.0.2 to 8.1.3

Dependencies: Bump sphinx from 8.0.2 to 8.1.3 #96

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/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}