-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WEB3-113: chore: CI coverage of examples #229
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for putting this together
RISC0_SKIP_BUILD: true | ||
- run: sccache --show-stats | ||
|
||
test-risc0-ethereum: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why suffix test
with risc0-ethereum
, given that we are in the risc0-ethereum
repo?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because it only runs cargo test on the main workspace and not examples etc. There is a separate job for that.
Inspired by #227 this PR runs `cargo fmt` `cargo sort` `cargo clippy` `cargo test` and `forge tests` for all examples in the CI. It uses a bash script to find all examples under the `example` folder instead of manually listing them. It also addresses all the found linter warnings. closes WEB3-109 closes Web3-110
Inspired by #227 this PR runs
cargo fmt
cargo sort
cargo clippy
cargo test
andforge tests
for all examples in the CI.It uses a bash script to find all examples under the
example
folder instead of manually listing them.It also addresses all the found linter warnings.
closes WEB3-109
closes Web3-110