From bbc8d9f872ae93d6753681749098f1de76ea82bb Mon Sep 17 00:00:00 2001 From: Glen De Cauwsemaecker Date: Tue, 8 Oct 2024 14:02:29 +0200 Subject: [PATCH] add basic example of justfile (#345) part of #156 --- justfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 000000000..f054d51d7 --- /dev/null +++ b/justfile @@ -0,0 +1,10 @@ +check: + cargo check --workspace + +test: + cargo test --workspace --lib --examples + +clippy: + cargo clippy --tests -- --deny warnings + +qa: check test clippy