Files
xboct-deploy/justfile
T
2026-08-23 04:53:23 +05:00

17 lines
268 B
Makefile

config := "test/deploy.toml"
project := "github-tracker"
default:
@just --list
build:
cargo build
run *args:
cargo run -- --config {{config}} {{project}} {{args}}
test:
cargo fmt --check
cargo clippy --all-targets -- -D warnings
cargo test