Skip to content

Commit 7785c20

Browse files
codecov add some echo logs
1 parent e59d74b commit 7785c20

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/codecov.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,16 @@ jobs:
2727
- uses: actions-rs/cargo@v1
2828
continue-on-error: true
2929
- run: |
30+
echo "Installing grcov";
3031
cargo install grcov;
32+
echo "Running tests";
3133
cargo test --all-features;
34+
echo "Running ignored tests for coverage";
3235
cargo test discv5_echo -- --ignored;
36+
echo "Running default_echo ignored tests for coverage";
3337
cargo test default_echo -- --ignored;
3438
mkdir /tmp/cov;
39+
echo "Generating coverage report";
3540
grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov;
3641
- uses: codecov/codecov-action@v3
3742
with:

0 commit comments

Comments
 (0)