We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12caedc commit e4d56feCopy full SHA for e4d56fe
.github/workflows/ci.yml
@@ -33,10 +33,9 @@ jobs:
33
export PYTHONPATH="$PYTHONPATH:$GITHUB_WORKSPACE"
34
pytest --cov=kexxu_eye_sdk --cov-report=xml --cov-report=term-missing --cov-fail-under=50
35
36
- - name: Upload coverage.xml artifact
37
- if: always()
38
- uses: actions/upload-artifact@v4
+ - name: Upload coverage to Codecov
+ uses: codecov/codecov-action@v5
39
with:
40
- name: coverage-${{ matrix.python-version }}
41
- path: coverage.xml
+ files: coverage.xml
+ fail_ci_if_error: true
42
0 commit comments