build(justfile): validate format locally

This commit is contained in:
Paul Campbell 2024-05-20 07:42:08 +01:00
parent f4b8401bb1
commit 7b1575eb09

View file

@ -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'