diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index c587f6b3..f08e4043 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -48,6 +48,7 @@ jobs: args: --all --no-default-features --features libp2p - name: Run Grcov run: | + rm -rf /tmp/coverage cargo binstall -y grcov; mkdir /tmp/coverage; grcov . --binary-path ./target/debug -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/coverage/tests.lcov;