fix install grcov

This commit is contained in:
Ivan Folgueira Bande 2025-10-05 17:51:40 +02:00
parent cf890bd286
commit ff5841f01c
No known key found for this signature in database
GPG Key ID: 3C117481F89E24A7

View File

@ -30,10 +30,11 @@ jobs:
- uses: actions-rs/cargo@v1
continue-on-error: true
- run: |
cargo install --force grcov;
cargo binstall -y grcov;
cargo test --all-features;
cargo test discv5_echo -- --ignored;
cargo test default_echo -- --ignored;
rm -rf /tmp/cov;
mkdir /tmp/cov;
grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov;
- uses: codecov/codecov-action@v3