g3/justfile
Glen De Cauwsemaecker bbc8d9f872
add basic example of justfile (#345)
part of #156
2024-10-08 20:02:29 +08:00

10 lines
162 B
Makefile

check:
cargo check --workspace
test:
cargo test --workspace --lib --examples
clippy:
cargo clippy --tests -- --deny warnings
qa: check test clippy