georm/justfile

34 lines
365 B
Makefile
Raw Normal View History

2025-01-26 13:00:27 +00:00
mod docker
default: lint
clean:
cargo clean
2025-01-26 13:00:27 +00:00
test:
cargo test --all-targets --all
2025-01-26 13:00:27 +00:00
lint:
cargo clippy --all-targets
audit:
cargo deny check all
build:
cargo build
2025-01-26 13:00:27 +00:00
build-release:
cargo build --release
2025-01-26 13:00:27 +00:00
format:
cargo fmt --all
format-check:
cargo fmt --check --all
2025-01-26 13:00:27 +00:00
check-all: format-check lint audit test
2025-01-26 13:00:27 +00:00
## Local Variables:
## mode: makefile
## End: