From eabf97dff8ef3643ac63ffac595d7354d4417712 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 14 Nov 2024 10:46:41 +0000 Subject: [PATCH] build: add build recipe to justfile --- justfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/justfile b/justfile index 82a6dc97..ec580328 100644 --- a/justfile +++ b/justfile @@ -1,3 +1,15 @@ +build: + #!/usr/bin/env bash + set -e + cargo fmt + cargo fmt --check + cargo hack clippy + cargo hack build + cargo hack test + cargo doc + # cargo test --example get + cargo mutants --jobs 4 + install-hooks: @echo "Installing git hooks" cargo install cc-cli