From a3ccea9dcb0d10bed3e83f78645df6907da88d7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Tue, 21 Dec 2021 16:15:12 +0100 Subject: [PATCH] Justfile: Check cargo dep updates during "check" --- Justfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 1ab9c1d..8f3dc66 100644 --- a/Justfile +++ b/Justfile @@ -1,8 +1,11 @@ -check: test +check: check-cargo-lock test cargo check cargo fmt --check cargo clippy --no-deps -- -Dwarnings +check-cargo-lock: + cargo update --locked + lint-fix: cargo clippy --no-deps --fix