Skip to content

Commit

Permalink
fix: replace binstall with normal install for grcov
Browse files Browse the repository at this point in the history
  • Loading branch information
romanzac committed Sep 13, 2024
1 parent 3a0390f commit ed122de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/my_codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- uses: actions-rs/cargo@v1
continue-on-error: true
- run: |
cargo binstall -y grcov;
cargo install -y grcov;
cargo test --no-default-features --features libp2p
mkdir /tmp/cov;
grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov;
Expand Down

0 comments on commit ed122de

Please sign in to comment.