From ff5841f01c1c3b6b19267f1154b0a1d7ad1333c5 Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Sun, 5 Oct 2025 17:51:40 +0200 Subject: [PATCH] fix install grcov --- .github/workflows/codecov.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 422544e..316f10a 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -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