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 71720fd commit 02d921aCopy full SHA for 02d921a
.github/workflows/bevy_mod_scripting.yml
@@ -74,16 +74,9 @@ jobs:
74
- name: Check
75
run: |
76
${{ matrix.run_args.command }}
77
- - name: Install lcov/genhtml
+ - name: Upload coverage artifact
78
if: ${{ matrix.run_args.generates_coverage }}
79
- run: |
80
- sudo apt-get install lcov -y
81
- - name: Report code coverage
82
- if: ${{ matrix.run_args.generates_coverage }}
83
- uses: zgosalvez/github-actions-report-lcov@v3
+ uses: actions/upload-artifact@v4
84
with:
85
- coverage-files: |
86
- **/lcov.info
87
- minimum-coverage: 50
88
- artifact-name: code-coverage-report
89
- github-token: ${{ secrets.GITHUB_TOKEN }}
+ name: code-coverage-report
+ path: target/coverage/html/
0 commit comments