23 lines
339 B
Makefile
23 lines
339 B
Makefile
# Justfile for Sandcage
|
|
|
|
# Default: list available recipes.
|
|
default:
|
|
@just --list
|
|
|
|
# Run cargo check.
|
|
check:
|
|
cargo check
|
|
|
|
# Run cargo build.
|
|
build:
|
|
cargo build
|
|
|
|
# Run unit tests.
|
|
test:
|
|
cargo test --workspace
|
|
|
|
# Install sandcage and build images.
|
|
install:
|
|
cargo install --path crates/sandcage
|
|
sandcage build --force
|