kxio/justfile
Paul Campbell 8d506131ca
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
build(justfile): add validate dev branch recipe
2024-04-28 11:29:44 +01:00

8 lines
394 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 --features "fs,network"'
git rebase -i origin/main -x 'cargo test --features "fs,network"'
git rebase -i origin/main -x 'cargo clippy --features "fs,network" -- -D warnings -W clippy::nursery -W clippy::unwrap_used -W clippy::expect_used'