Skip to content

🧪 CI: add codecov for coverage monitoring. #189

🧪 CI: add codecov for coverage monitoring.

🧪 CI: add codecov for coverage monitoring. #189

Workflow file for this run

name: Tests
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
make install-ci
make install-test
- name: Run tests
run: |
make cover-xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}