# Developer automation for {{PROJECT_NAME}}
# Generated by groundtruth-kb project scaffold

.PHONY: lint format test check assert serve clean

lint:
	ruff check .

format:
	ruff format .

test:
	pytest -v --tb=short

check: lint test
	@echo "All checks passed."

assert:
	gt assert

serve:
	gt serve

clean:
	rm -rf __pycache__ .ruff_cache .pytest_cache
	find . -type d -name __pycache__ -exec rm -rf {} + 2>/dev/null || true
