From 41cfb99df57082f67ff70f085aac4d2fbb13f055 Mon Sep 17 00:00:00 2001 From: Toasterkitten Date: Mon, 22 Jun 2026 18:26:59 -0400 Subject: [PATCH] add just --- justfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 justfile 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