Files
2026-05-23 15:37:34 +02:00

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