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 7c908eb commit 1e982a8Copy full SHA for 1e982a8
.github/workflows/bevy_mod_scripting.yml
@@ -76,21 +76,22 @@ jobs:
76
${{ matrix.run_args.command }}
77
78
- name: Upload lcov files if any exist
79
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v4
80
with:
81
name: lcov-${{ matrix.run_args.os }}-${{ matrix.run_args.name }}
82
path: |
83
**/lcov.*
84
if-no-files-found: ignore
85
86
report-coverage:
87
+ needs: check
88
runs-on: ubuntu-latest
89
continue-on-error: true
90
permissions:
91
pull-requests: write
92
steps:
93
- name: Download all lcov files
- uses: actions/download-artifact@v2
94
+ uses: actions/download-artifact@v4
95
96
merge-multiple: true
97
pattern: lcov-*
0 commit comments