diff --git a/justfile b/justfile index ad640d9..a042576 100644 --- a/justfile +++ b/justfile @@ -1,3 +1,8 @@ install-hooks: @echo "Installing git hooks" git config core.hooksPath .git-hooks + +validate-dev-branch: + 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 -W clippy::nursery -W clippy::unwrap_used -W clippy::expect_used'