Formatting and CI
Some checks failed
CI / check (push) Failing after 10s

This commit is contained in:
Connor Johnstone
2026-03-18 15:37:30 -04:00
parent 1b7c10ea9e
commit 82c82ae46a
16 changed files with 154 additions and 27 deletions

26
justfile Normal file
View File

@@ -0,0 +1,26 @@
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