georm/justfile
Lucien Cartier-Tilet f7cdcb1563
All checks were successful
CI / tests (push) Successful in 4m26s
chore: add CI and issue templates
2025-01-31 23:23:19 +01:00

37 lines
399 B
Makefile

mod docker
default: lint
clean:
cargo clean
test:
cargo test --all-targets --all
lint:
cargo clippy --all-targets
audit:
cargo deny check all
migrate:
cargo sqlx migrate run
build:
cargo build
build-release:
cargo build --release
format:
cargo fmt --all
format-check:
cargo fmt --check --all
check-all: format-check lint audit test
## Local Variables:
## mode: makefile
## End: