We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b5ef37 commit bb62530Copy full SHA for bb62530
.github/workflows/main.yml
@@ -33,10 +33,6 @@ jobs:
33
steps:
34
- id: checkout
35
uses: actions/checkout@v4
36
- - name: Setup test coverage env
37
- run: |
38
- cargo install grcov
39
- rustup component add llvm-tools
40
- name: Cache
41
uses: actions/cache@v4
42
with:
@@ -47,6 +43,10 @@ jobs:
47
43
~/.cargo/git/db/
48
44
target/
49
45
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
46
+ - name: Setup test coverage env
+ run: |
+ cargo install grcov
+ rustup component add llvm-tools
50
- run: cargo test --locked
51
env:
52
LLVM_PROFILE_FILE: target/debug/coverage/grcov-%p-%m.profraw
0 commit comments