Skip to content

all plots and impl #186

all plots and impl

all plots and impl #186

Workflow file for this run

on: [push]
name: Code Coverage
jobs:
test:
name: Coverage
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: '3.11'
cache: true
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install dependencies
run: |
pdm install -G test,github-action
- name: Run pytest and coverage
run: pdm run pytest --cov-report xml --cov=differt tests/
- name: Upload to codecov.io
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true