forked from kemitix/git-next
8 lines
322 B
Makefile
8 lines
322 B
Makefile
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'
|