PHONY: test
test:
	uv run pytest tests

PHONY: lint
lint:
	uv run ruff format
	uv run ruff check --fix

PHONY: ty
ty:
	uv run ty check
