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 73e519b commit 533c3d9Copy full SHA for 533c3d9
.github/workflows/test.yml
@@ -42,7 +42,13 @@ jobs:
42
if: matrix.os == 'windows-latest'
43
run: |
44
./scripts/poetry_test.bat
45
-
+ - name: Upload coverage to Codecov
46
+ if: matrix.os == 'ubuntu-latest'
47
+ uses: codecov/codecov-action@v4
48
+ with:
49
+ token: ${{ secrets.CODECOV_TOKEN }}
50
+ file: ./coverage.xml
51
+ flags: unittests
52
check: # This job does nothing and is only used for the branch protection
53
if: github.event.pull_request.draft == false
54
0 commit comments