1
1
Fork 0
mirror of https://github.com/lune-org/lune.git synced 2025-04-09 13:00:55 +01:00
lune/.justfile
2023-08-04 14:35:32 -05:00

11 lines
253 B
Makefile

# Run an individual test using the Lune CLI
run-test TEST_NAME:
cargo run -- "tests/{{TEST_NAME}}"
# Run an individual file using the Lune CLI
run-file FILE_NAME:
cargo run -- "{{FILE_NAME}}"
# Run tests for the Lune library
test:
cargo test --lib