Skip to content

Commit

Permalink
fix: binstall for grcov
Browse files Browse the repository at this point in the history
  • Loading branch information
romanzac committed Sep 17, 2024
1 parent ca7cd1f commit 0d25de9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/my_codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
name: My Codecov 3

jobs:
tests:
test:
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-C instrument-coverage"
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
args: --all --no-default-features --features libp2p
- name: Run Grcov
run: |
cargo install grcov;
cargo binstall -y grcov;
mkdir /tmp/cov;
grcov . --binary-path ./target/debug -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov;
- uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 0d25de9

Please sign in to comment.