We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 778cc06 commit f910669Copy full SHA for f910669
.github/workflows/run-tests.yml
@@ -31,10 +31,10 @@ jobs:
31
run: |
32
pytest --cov=rune.runtime --cov-report=term-missing --cov-report=xml:coverage.xml --junitxml=test-results.xml
33
34
- - name: Debug - List files after pytest
35
- run: |
36
- pwd
37
- ls -la
+ #- name: Debug - List files after pytest
+ # run: |
+ # pwd
+ # ls -la
38
39
- name: Upload coverage report
40
uses: actions/upload-artifact@v4
@@ -55,3 +55,10 @@ jobs:
55
if: always() # Run even if tests fail
56
with:
57
files: test-results.xml
58
+
59
+ - name: Upload coverage to Codecov
60
+ uses: codecov/codecov-action@v4
61
+ with:
62
+ files: coverage.xml
63
+ fail_ci_if_error: true
64
+ verbose: true
0 commit comments