We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d49b2b commit ba79cd6Copy full SHA for ba79cd6
.github/workflows/ci.yaml
@@ -27,8 +27,13 @@ jobs:
27
- uses: astral-sh/ruff-action@v3
28
29
- name: Run tests with coverage
30
- run: uv run pytest tests
+ run: uv run coverage run -m pytest
31
32
- # TODO: figure out how to use this
33
- # - name: Produce coverage report
34
- # run: uv run coverage report -m
+ - name: Produce coverage report
+ run: uv run coverage xml
+
35
+ - name: Show coverage report
36
+ uses: orgoro/[email protected]
37
+ with:
38
+ coverageFile: ./coverage.xml
39
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments