From 7b1575eb09ddbfa383ff12991b04c2810a88f10a Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Mon, 20 May 2024 07:42:08 +0100 Subject: [PATCH] build(justfile): validate format locally --- justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/justfile b/justfile index 4b15983..1495958 100644 --- a/justfile +++ b/justfile @@ -4,6 +4,7 @@ install-hooks: git config core.hooksPath .git-hooks validate-dev-branch: + git rebase -i origin/main -x 'cargo fmt --check' git rebase -i origin/main -x 'cargo build' git rebase -i origin/main -x 'cargo test' git rebase -i origin/main -x 'cargo clippy -- -D warnings'