Skip to content

Commit 81722ee

Browse files
chore: add coverage report upload to github actions
1 parent fe23193 commit 81722ee

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/test.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,11 @@ jobs:
3434
cd libs/${{ matrix.library }}
3535
uv pip install -e .[all]
3636
pytest tests/unit
37+
- name: Generate Report
38+
run: |
39+
uv pip install coverage
40+
coverage run -m pytest
41+
- name: Upload coverage reports to Codecov
42+
uses: codecov/codecov-action@v3
43+
env:
44+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)