From e6fae1c67990fecb99e37cc94ffa25fccdd1314a Mon Sep 17 00:00:00 2001 From: Ethiraric Date: Wed, 24 Jan 2024 01:11:53 +0100 Subject: [PATCH] Add `justfile` for my pre-commit todo-list. --- saphyr/justfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 saphyr/justfile diff --git a/saphyr/justfile b/saphyr/justfile new file mode 100644 index 0000000..a9d1a56 --- /dev/null +++ b/saphyr/justfile @@ -0,0 +1,6 @@ +before_commit: + cargo clippy --release --all-targets -- -D warnings + cargo clippy --all-targets -- -D warnings + cargo build --release --all-targets + cargo build --all-targets + cargo test --release