From d4b585448347f1195a6a36380da49751e6bbc311 Mon Sep 17 00:00:00 2001 From: tegwick Date: Thu, 12 Mar 2026 11:38:23 +0100 Subject: [PATCH] chore: add Makefile with test, lint, and install targets Co-Authored-By: Claude Sonnet 4.6 --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bc36205 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: test lint install + +test: + uv run pytest + +lint: + uv run ruff check . + +install: + uv tool install -e .