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 7d45b57 commit ef0c8ecCopy full SHA for ef0c8ec
.github/workflows/pythonpackage.yml
@@ -49,9 +49,14 @@ jobs:
49
- name: Run tox targets for ${{ matrix.python-version }}
50
run: tox -e ${{matrix.tox-python-version}}
51
52
- - name: Upload coverage data
53
- uses: actions/upload-artifact@v4
+ - name: Upload coverage to Codecov
+ uses: codecov/codecov-action@v4
54
+ with:
55
+ token: ${{ secrets.CODECOV_TOKEN }}
56
+
57
+ - name: Upload test results to Codecov
58
+ if: ${{ !cancelled() }}
59
+ uses: codecov/test-results-action@v1
60
with:
- name: coverage-data-${{ matrix.python-version }}
61
token: ${{ secrets.CODECOV_TOKEN }}
62
0 commit comments