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 82b07f2 commit fe20d93Copy full SHA for fe20d93
1 file changed
.github/workflows/tox-test.yml
@@ -33,6 +33,8 @@ jobs:
33
run: tox -e pidiff
34
coverage:
35
runs-on: ubuntu-latest
36
+ permissions:
37
+ id-token: write
38
steps:
39
- uses: actions/checkout@v2
40
- name: Install RPM
@@ -45,6 +47,14 @@ jobs:
45
47
run: pip install tox
46
48
- name: Run Tox
49
run: tox -e cov
50
+ - name: Upload coverage to Codecov
51
+ uses: codecov/codecov-action@v5
52
+ if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref =='refs/heads/master')
53
+ with:
54
+ use_oidc: true
55
+ flags: unit-tests
56
+ files: coverage.xml
57
+ fail_ci_if_error: false
58
docs:
59
60
0 commit comments