Skip to content

Commit

Permalink
Update workflow to test all crates in crates/cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Brad-Edwards committed Jan 2, 2025
1 parent ea9c380 commit 05e0d65
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ jobs:
- name: Generate coverage report
run: |
cargo install cargo-llvm-cov
cargo llvm-cov --manifest-path crates/cs/blocks-cs-core/Cargo.toml --lcov --output-path lcov.info
for toml in $(find crates/cs -name "Cargo.toml"); do
echo "Running tests for $toml"
cargo llvm-cov --manifest-path $toml --lcov --output-path lcov.info
done
- name: Check coverage
run: |
bash <(curl -s https://codecov.io/bash) -f lcov.info
Expand Down

0 comments on commit 05e0d65

Please sign in to comment.