georm/justfile

37 lines
399 B
Makefile
Raw Normal View History

2025-01-26 14:00:27 +01:00
mod docker
default: lint
clean:
cargo clean
2025-01-26 14:00:27 +01:00
test:
cargo test --all-targets --all
2025-01-26 14:00:27 +01:00
lint:
cargo clippy --all-targets
audit:
cargo deny check all
2025-01-31 23:09:40 +01:00
migrate:
cargo sqlx migrate run
build:
cargo build
2025-01-26 14:00:27 +01:00
build-release:
cargo build --release
2025-01-26 14:00:27 +01:00
format:
cargo fmt --all
format-check:
cargo fmt --check --all
2025-01-26 14:00:27 +01:00
check-all: format-check lint audit test
2025-01-26 14:00:27 +01:00
## Local Variables:
## mode: makefile
## End: