fix: Codecov workflow output directory cleanup (#866)

* fix: self-hosted runner needs clean up

* fix: remove on push trigger
This commit is contained in:
Roman Zajic 2024-10-30 17:15:27 +08:00 committed by GitHub
parent 3213453c43
commit 07b215e885
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -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;