Skip to content

Merge commit '6d7a40c9ff37eaf3bfa9ccdea4584a401116e6ec' into prepare-v03 #840

Merge commit '6d7a40c9ff37eaf3bfa9ccdea4584a401116e6ec' into prepare-v03

Merge commit '6d7a40c9ff37eaf3bfa9ccdea4584a401116e6ec' into prepare-v03 #840

Workflow file for this run

name: pytest-cov
# Need to include "push"
on: [push, pull_request]
permissions:
contents: read
jobs:
cov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install graphix with dev deps.
run: pip install .[dev]
- name: Run pytest
run: pytest --cov=./graphix --cov-report=xml --cov-report=term
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}