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 e59d74b commit 7785c20Copy full SHA for 7785c20
.github/workflows/codecov.yml
@@ -27,11 +27,16 @@ jobs:
27
- uses: actions-rs/cargo@v1
28
continue-on-error: true
29
- run: |
30
+ echo "Installing grcov";
31
cargo install grcov;
32
+ echo "Running tests";
33
cargo test --all-features;
34
+ echo "Running ignored tests for coverage";
35
cargo test discv5_echo -- --ignored;
36
+ echo "Running default_echo ignored tests for coverage";
37
cargo test default_echo -- --ignored;
38
mkdir /tmp/cov;
39
+ echo "Generating coverage report";
40
grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov;
41
- uses: codecov/codecov-action@v3
42
with:
0 commit comments