From 4350058945d2efc80f267ebda6a3f70f50104d54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Tue, 23 Jul 2024 23:24:54 +0400 Subject: [PATCH] chore(xtask): check all targets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marc-André Lureau --- xtask/src/check.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtask/src/check.rs b/xtask/src/check.rs index 8eae85ea..27700825 100644 --- a/xtask/src/check.rs +++ b/xtask/src/check.rs @@ -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!");