You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pkg-warner/justfile

15 lines
271 B
Plaintext

set dotenv-load := true
# Run all checks and tests
check *FLAGS:
cargo clippy --all {{FLAGS}} -- -D warnings
cargo fmt --all --check {{FLAGS}}
# Test the warner
test *FLAGS:
cargo run {{FLAGS}} -- --test
# Test using Nix
test-nix:
nix run .# -- --test