Files

20 lines
305 B
Makefile

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