We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf890bd commit ff5841fCopy full SHA for ff5841f
.github/workflows/codecov.yml
@@ -30,10 +30,11 @@ jobs:
30
- uses: actions-rs/cargo@v1
31
continue-on-error: true
32
- run: |
33
- cargo install --force grcov;
+ cargo binstall -y grcov;
34
cargo test --all-features;
35
cargo test discv5_echo -- --ignored;
36
cargo test default_echo -- --ignored;
37
+ rm -rf /tmp/cov;
38
mkdir /tmp/cov;
39
grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov;
40
- uses: codecov/codecov-action@v3
0 commit comments