17 lines
268 B
Makefile
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
|