georm/justfile
Lucien Cartier-Tilet adeba2f18a
All checks were successful
CI / tests (push) Successful in 4m56s
chore: add CI and issue templates
2025-01-31 23:14:40 +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: