We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5dcaa0 commit beade42Copy full SHA for beade42
.github/workflows/test.yml
@@ -86,7 +86,7 @@ jobs:
86
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('Cargo.lock') }}
87
- name: Generate test result and coverage report
88
run: |
89
- cargo install cargo2junit grcov;
+ cargo install --locked cargo2junit grcov;
90
cargo test $CARGO_OPTIONS -v -- -Z unstable-options --format json | cargo2junit > results.xml;
91
zip -0 ccov.zip `find . \( -name "$PROJECT_NAME_UNDERSCORE*.gc*" \) -print`;
92
grcov ccov.zip -s . -t lcov --llvm --ignore-not-existing --ignore "/*" --ignore "tests/*" -o lcov.info;
0 commit comments