From 720a80e71aeaf7ff7e76837c53babdbbc42dedac Mon Sep 17 00:00:00 2001 From: Terts Diepraam Date: Wed, 10 Jan 2024 13:08:23 +0100 Subject: [PATCH] add justfile --- Justfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Justfile diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..7790af0 --- /dev/null +++ b/Justfile @@ -0,0 +1,5 @@ +check: + cargo fmt --all + cargo test --features complete + cargo clippy --all-targets --features complete --workspace -- -D warnings + cargo doc