Add examples Terraform check to Codex validation flow

This commit is contained in:
beatz174-bit
2026-04-23 12:33:43 +10:00
parent 4cd0267433
commit abcfdcc769
2 changed files with 8 additions and 1 deletions
+7
View File
@@ -18,4 +18,11 @@ go vet ./...
echo "[check] running go test"
go test ./...
if command -v terraform >/dev/null 2>&1; then
echo "[check] running terraform fmt check for examples/"
terraform fmt -check -recursive examples
else
echo "[check][warn] terraform not found; skipping examples/ checks" >&2
fi
echo "[check] complete"