chore(xtask): check all targets

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
Marc-André Lureau
2024-07-24 04:35:32 -04:00
committed by Benoît Cortier
parent 7307148cb8
commit 4350058945
+1 -1
View File
@@ -18,7 +18,7 @@ pub fn lints(sh: &Shell) -> anyhow::Result<()> {
let _s = Section::new("LINTS");
// TODO: when 1.74 is released use `--keep-going`: https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#keep-going
cmd!(sh, "{CARGO} clippy --workspace --locked -- -D warnings").run()?;
cmd!(sh, "{CARGO} clippy --workspace --all-targets --locked -- -D warnings").run()?;
println!("All good!");