-
Notifications
You must be signed in to change notification settings - Fork 49
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
style: lint fuzz projects in CI #283
Conversation
Head branch was pushed to by a user without write access
df9deaf
to
cb89e86
Compare
The CI was failed for build on macos 1 and I could see similar fails in other PR 2. Today I noticed there are some successful runs for the same job 3 4 which should be irrelevant about this issue. Although I am not very sure the root cause about these fails but I think it's not related to the changes of this RP. @Pr0methean can you approve the workflows again? I guess CI should pass now. p.s. I just pushed some changes because I wanted to see if I could trigger CI again, but it seems I can't. Footnotes |
Approved; this will be added to the merge queue if the fuzz checks pass. |
it seems that they depends on cargo-afl, so we need to use `cargo afl clippy` instead of `cargo clippy`.
In this commit I replaced `self.path.join("/")` with `self.path.join("")` because I think the expected result should be the original path with trailing "/". see: https://rust-lang.github.io/rust-clippy/master/index.html#join_absolute_paths
Head branch was pushed to by a user without write access
802fa76
to
a018d23
Compare
This PR adds steps to run
cargo fmt
andcargo clippy
tofuzz_write
andfuzz_read
, also fixed some issues found byfmt
andclippy
.