Skip to content

TODO_DEFERRED: migrate to fleet-standard format #132

TODO_DEFERRED: migrate to fleet-standard format

TODO_DEFERRED: migrate to fleet-standard format #132

Workflow file for this run

name: Coverage
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
codecov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install system dependencies
run: |
sudo apt-get update -q
sudo apt-get install -yq graphviz
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov sphinx docutils
pip install -e .
- 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@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}