rust-lib/justfile
Martin Berg Alstad f14543af6b
Some checks failed
Build & test / build (push) Has been cancelled
♻️ Removed Makefile, refactored schema in tests
2025-03-08 19:09:43 +01:00

20 lines
260 B
Makefile
Executable File

#!/usr/bin/env just --justfile
run:
cargo run
fmt:
cargo fmt --all
lint:
cargo clippy --all-targets --all-features -- -D warnings
release:
cargo build --release
test:
cargo test --all-features --workspace
coverage:
cargo llvm-cov