railiance-enablement/Makefile
tegwick 27ac54b32d
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s
Enforce private-by-default enablement templates
Assistant: codex
Assistant-Model: gpt-5.6-sol
Assistant-Session: 01a02669-87ee-7a31-b111-edc95a16e0fa
2026-08-22 12:34:25 +02:00

13 lines
375 B
Makefile

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