diff --git a/justfile b/justfile new file mode 100644 index 0000000..bf69423 --- /dev/null +++ b/justfile @@ -0,0 +1,10 @@ +test: + uv run pytest + +lint: + uv run ruff check + +fmt: + uv run ruff format + +check: lint test \ No newline at end of file