lune-packaging/.justfile

17 lines
421 B
Makefile
Raw Permalink Normal View History

# 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}}"
# Build Lune for release
# TODO: Take input argument for build type, rather than defaulting to `release`
build src/main.rs:
cargo build --release
2023-03-22 13:12:05 +00:00
# Run tests for the Lune library
test:
2023-07-20 08:47:00 +01:00
cargo test --lib -- --test-threads 1