From 76a6e6b6c31956a2a4e8f0f66927cb6605703110 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 3 Jan 2024 14:33:54 +0100 Subject: [PATCH] Expand `just ci` to run Clippy for whole workspace This was a deviation from the CI build, which was already doing that. --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 7b0f2fb0f..d0499aa67 100644 --- a/justfile +++ b/justfile @@ -19,6 +19,6 @@ test: # probably be considered a bug in this file. ci: test cargo fmt --check - cargo clippy --all-features -- -D warnings + cargo clippy --workspace --all-features -- -D warnings cargo doc --no-deps --document-private-items --all-features --workspace cargo run --package cross-compiler