Files
Untitled-Cat-Game/justfile
2026-06-22 18:26:59 -04:00

10 lines
99 B
Makefile

test:
uv run pytest
lint:
uv run ruff check
fmt:
uv run ruff format
check: lint test