25 lines
331 B
Makefile
25 lines
331 B
Makefile
fmt:
|
|
cargo +nightly fmt --all
|
|
fd -e toml -x tombi format --quiet
|
|
|
|
test:
|
|
cargo test --all-targets
|
|
|
|
static-check:
|
|
node --check static/app.js
|
|
|
|
clippy:
|
|
cargo clippy --all-targets
|
|
|
|
nginx-smoke:
|
|
./scripts/nginx-smoke.sh
|
|
|
|
check:
|
|
just fmt
|
|
just test
|
|
just static-check
|
|
just clippy
|
|
|
|
run:
|
|
cargo run
|