Closed CosmicHorrorDev closed 1 year ago
For now, I would prefer to remove clippy and MSRV completely. Maybe I'll give clippy another try and see about it then. :)
Done and done
Notably I switched cargo clippy -- -D warnings
to a cargo check -- -D warnings
as a heads up
Thanks for all your pull requests!
Thanks for the library! I hope to use it in the future :D
Forgot that cargo check
can't be passed Rust flags. I'll throw up a PR to fix that
Doesn't cargo check get executed anyway through cargo test?
I don't normally deny warnings on cargo test
because I'm less concerned about warnings that crop up there, but I try to keep cargo check
output clean, so that it's easy to notice any bug-prone warnings on future incompat notices
This sets up and action that runs on:
This enforces:
cargo fmt
,cargo clippy
,cargo test
, andcargo doc
warnings and hard errors on stable and betacargo check
andcargo test
hard errors on an MSRV versioncargo miri test
on nightly