.PHONY: lint test check
VENV_BIN ?= .venv/bin

lint:
	$(VENV_BIN)/ruff check --fix
	$(VENV_BIN)/mypy .

test:
	$(VENV_BIN)/python -m pytest . -q

check: lint test