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
