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 eea3f1d commit b6e2d2fCopy full SHA for b6e2d2f
.github/workflows/httomolibgpu_tests_run_iris.yml
@@ -40,10 +40,8 @@ jobs:
40
pytest --cov=./ tests/ --cov-report=xml:/home/runner/coverage.xml
41
42
- name: Upload coverage to Codecov
43
- uses: codecov/codecov-action@v5
44
- with:
45
- token: ${{ secrets.CODECOV_TOKEN }}
46
- files: /home/runner/coverage.xml
47
- fail_ci_if_error: true
48
- name: httomolibgpu-codecov
49
- verbose: true
+ run: |
+ pip install codecov-cli
+ codecovcli -v upload-coverage --fail-on-error --file /home/runner/coverage.xml --name httomolibgpu-codecov
+ env:
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
0 commit comments