We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe23193 commit 81722eeCopy full SHA for 81722ee
.github/workflows/test.yaml
@@ -34,3 +34,11 @@ jobs:
34
cd libs/${{ matrix.library }}
35
uv pip install -e .[all]
36
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