-
Before opening an issue I wanted to check what's the expected behavior. I'm running clippy on CI as follows:
and I get the following output and it takes 4 minutes to run on GitHub Actions:
It looks like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The For all the other non-path dependencies for your crate, the lints will already be suppressed by cargo/rustc itself. |
Beta Was this translation helpful? Give feedback.
"Checking" means, that no codegen is run for that crate, so the LLVM step is skipped and no binary is produced for example. "Compiling" means that the crate is fully compiled. For your example this seems to be necessary for some crates (even when just checking with
cargo clippy
orcargo check
), because there are proc-macros involved.