From 1dfd89c7c31b3e6195bf9d6f67999e6a77f48de0 Mon Sep 17 00:00:00 2001 From: Johan Lundberg Date: Fri, 20 Feb 2026 15:04:04 +0100 Subject: [PATCH] add Makefile --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e7a59e2 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +.PHONY: reformat lint typecheck test check + +reformat: + uv run ruff format src/ tests/ + +lint: + uv run ruff check src/ tests/ --fix + +typecheck: + uv run ty check src/ + +test: + uv run python -m pytest -v + +check: reformat lint typecheck test + @echo "All checks passed!"