Files
Main/justfile
Connor Johnstone 82c82ae46a
Some checks failed
CI / check (push) Failing after 10s
Formatting and CI
2026-03-18 15:37:30 -04:00

27 lines
311 B
Makefile

default:
@just --list
build:
cargo build --workspace
test:
cargo test --workspace
lint:
cargo clippy --workspace -- -D warnings
fmt:
cargo fmt
check: fmt lint test
run:
cargo run --bin shanty
frontend:
cd shanty-web/frontend && trunk build
dev: frontend run
ci: check build