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 96642be commit da5cfefCopy full SHA for da5cfef
.github/workflows/tox.yml
@@ -31,6 +31,10 @@ jobs:
31
- name: Test with tox
32
run: tox
33
- name: Upload to coverage
34
- uses: codecov/[email protected]
35
- with:
36
- flags: ${{ matrix.python-version }}
+ # workaround for https://github.com/codecov/codecov-action/issues/85
+ if: >-
+ matrix.python-version == 3.8 && success()
37
+ run: |
38
+ GITHUB_ACTION= bash <(curl -s https://codecov.io/bash) -X search -f "./coverage.xml"
39
+ env:
40
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
0 commit comments