.PHONY: lint test

lint:
	ruff check --fix
	ruff format
	mypy .

test:
	pytest