Skip to content

Commit

Permalink
clean before tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zeegomo committed Sep 12, 2024
1 parent ae2ef3e commit bec8491
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,12 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: |
cargo binstall -y grcov;
cargo build --all --no-default-features --features libp2p
cargo build --bins --no-default-features --features libp2p
mkdir bcp
cp ./target/debug/{nomos-cli,nomos-node,rocks} bcp/
cargo clean
cargo test --no-default-features --features libp2p
cp bcp/* ./target/debug
mkdir /tmp/cov;
grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov;
env:
Expand Down

0 comments on commit bec8491

Please sign in to comment.