We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9ee732 commit 89b7e89Copy full SHA for 89b7e89
1 file changed
.github/workflows/check.yml
@@ -111,7 +111,9 @@ jobs:
111
# shellcheck disable=SC2086
112
if [ "$TOOLCHAIN" == "stable" ]; then
113
cargo llvm-cov test $BUILD_TYPE --locked --include-ffi --codecov --output-path codecov.json
114
- cargo llvm-cov report $BUILD_TYPE --lcov --include-ffi --output-path lcov.info
+ if [ "$RUNNER_OS" == "Linux" ] && [ -z "$BUILD_TYPE" ]; then
115
+ cargo llvm-cov report --lcov --include-ffi --output-path lcov.info
116
+ fi
117
elif [ -n "$CAREFUL" ]; then
118
cargo careful test $BUILD_TYPE --locked --target "$(rustc --print host-tuple)"
119
fi
@@ -172,6 +174,7 @@ jobs:
172
174
crap:
173
175
name: CRAP analysis
176
needs: check
177
+ if: ${{ !cancelled() }}
178
runs-on: ubuntu-24.04
179
permissions:
180
contents: read
0 commit comments