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.
2 parents 00e81b9 + 1e7cb2e commit 50433ddCopy full SHA for 50433dd
.github/workflows/unittest.yml
@@ -37,10 +37,11 @@ jobs:
37
- name: execute unit-test
38
run: |
39
tox -e unittests
40
- - name: Upload coverage reports to Codecov
+ - name: Upload coverage reports to Codecov, on ubuntu only
41
+ if: ${{ matrix.os == 'ubuntu-latest' }}
42
uses: codecov/codecov-action@v4
43
with:
44
working-directory: ${{github.workspace}}
45
token: ${{ secrets.CODECOV_TOKEN }}
- file: ${{github.workspace}}/.coverage
46
+ file: ${{github.workspace}}/coverage.xml
47
verbose: true
0 commit comments