.PHONY: test lint typecheck check

test:
	pytest

lint:
	ruff check .

typecheck:
	mypy

check: lint typecheck test
