Skip to content

Update README.md

Update README.md #182

Workflow file for this run

---
name: Github CI Coverage
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install coverage dependencies
run: |
pip install ".[dev]"
pip install ".[coverage]"
- name: Run coverage tests
run: make coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}