kxio/justfile
Paul Campbell 1ea9c1c557
Some checks failed
Rust / build (map[name:stable]) (push) Failing after 2m3s
Rust / build (map[name:nightly]) (push) Failing after 3m54s
test(fs): integration tests
2024-11-01 21:02:04 +00:00

13 lines
444 B
Makefile

build:
cargo build
cargo test
cargo clippy
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'