geth/justfile

17 lines
339 B
Makefile
Raw Normal View History

2026-05-15 15:08:20 +02:00
fmt:
cargo fmt --all
check:
cargo check --workspace --all-targets
test:
cargo test --workspace
clippy:
cargo clippy --workspace --all-targets -- -D warnings
ci:
cargo fmt --all -- --check
cargo check --workspace --all-targets
cargo clippy --workspace --all-targets -- -D warnings
cargo test --workspace