crosslang/justfile
Maximus Gorog 23162fb93a Add README, CONTRIBUTING, editorconfig, gitattributes, justfile
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-29 09:44:24 -06:00

24 lines
330 B
Makefile

# Common project tasks. Run `just` to list.
default:
@just --list
build:
lake build
repl:
lake exe octive-lean
run script:
lake exe octive-lean {{script}}
test:
lake build && lake exe corpus-check
update-corpus:
lake build && lake exe corpus-check --update
clean:
lake clean
fresh: clean build