all: ruff mypy test
format: ruff
lint: ruff mypy
check: checkruff mypy test

install:
	uv sync

ruff:
	uv run ruff check . --fix

checkruff:
	uv run ruff check .

mypy:
	uv run mypy .

test:
	uv run pytest tests
