We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a897cc commit 80f9071Copy full SHA for 80f9071
1 file changed
.github/workflows/pythonpackage.yml
@@ -54,6 +54,18 @@ jobs:
54
path: htmlcov
55
# Use always() to always run this step to publish test results when there are test failures
56
if: ${{ always() }}
57
+ - name: Upload coverage to Codecov
58
+ uses: codecov/codecov-action@v2
59
+ with:
60
+ token: ${{ secrets.CODECOV_TOKEN }}
61
+ directory: .
62
+ env_vars: OS,PYTHON
63
+ fail_ci_if_error: true
64
+ files: ./coverage.xml
65
+ flags: unittests
66
+ name: codecov-umbrella
67
+ path_to_write_report: ./coverage/codecov_report.txt
68
+ verbose: true
69
- name: Check package consistency with twine
70
run: |
71
python setup.py check sdist bdist_wheel
0 commit comments