We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6850871 commit 0793566Copy full SHA for 0793566
.github/workflows/test.yaml
@@ -38,8 +38,9 @@ jobs:
38
args: --locked --all-features --no-fail-fast
39
env:
40
CARGO_INCREMENTAL: '0'
41
- RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
42
- RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
+ RUSTFLAGS: '-Cinstrument-coverage'
+ RUSTDOCFLAGS: '-Cinstrument-coverage'
43
+ LLVM_PROFILE_FILE: 'nicator-%p-%m.profraw'
44
- uses: actions-rs/[email protected]
45
id: grcov
46
with:
grcov.yaml
@@ -1,6 +1,7 @@
1
branch: true
2
llvm: true
3
ignore-not-existing: true
4
+binary-path: "./target/debug/"
5
ignore:
6
- "/usr/*"
7
- "/home/runner/.cargo/*"
0 commit comments