SHELL := /usr/bin/env bash
.DEFAULT_GOAL := help

help: ## Show this help
	@grep -E '^[a-zA-Z0-9_-]+:.*?## ' $(MAKEFILE_LIST) | sort | sed 's/:.*##/: /'

check: ## Verify workflow templates remain private and deployment-free
	python3 tools/check_private_defaults.py

test: ## Run enablement regression tests
	python3 -m unittest discover -s tests -v

.PHONY: help check test
