This commit is contained in:
2026-06-22 18:26:59 -04:00
parent 489b5d5c23
commit 41cfb99df5

10
justfile Normal file
View File

@@ -0,0 +1,10 @@
test:
uv run pytest
lint:
uv run ruff check
fmt:
uv run ruff format
check: lint test