porchlight/Makefile
Johan Lundberg 1dfd89c7c3
add Makefile
2026-02-20 15:04:04 +01:00

16 lines
264 B
Makefile

.PHONY: reformat lint typecheck test check
reformat:
uv run ruff format src/ tests/
lint:
uv run ruff check src/ tests/ --fix
typecheck:
uv run ty check src/
test:
uv run python -m pytest -v
check: reformat lint typecheck test
@echo "All checks passed!"