From 399f7820cd30dc0f8be01685b411c9255f2a9ea4 Mon Sep 17 00:00:00 2001 From: xermicus Date: Thu, 15 May 2025 13:15:50 +0200 Subject: [PATCH] add all cargo tasks to the test target (#14) Signed-off-by: Cyrill Leutwiler --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4f68567..43abc76 100644 --- a/Makefile +++ b/Makefile @@ -6,9 +6,10 @@ format: clippy: cargo clippy --all-features --workspace -- --deny warnings -test: - cargo test --workspace -- --nocapture - machete: cargo install cargo-machete cargo machete + +test: format clippy machete + cargo test --workspace -- --nocapture +