.PHONY: lint
lint:
	ruff check .

.PHONY: format
format:
	ruff format .

.PHONY: test
test:
	pytest tests
