Archived
Add examples Terraform check to Codex validation flow
This commit is contained in:
@@ -51,7 +51,7 @@ Do not implement in this phase:
|
|||||||
|
|
||||||
## Developer scripts
|
## Developer scripts
|
||||||
- `scripts/setup-dev.sh`: validate local toolchain requirements
|
- `scripts/setup-dev.sh`: validate local toolchain requirements
|
||||||
- `scripts/check.sh`: run formatting and unit checks
|
- `scripts/check.sh`: run formatting and unit checks, then run Terraform checks against `examples/`
|
||||||
- `scripts/testacc.sh`: run acceptance tests using generic env vars
|
- `scripts/testacc.sh`: run acceptance tests using generic env vars
|
||||||
|
|
||||||
## Output expectations
|
## Output expectations
|
||||||
|
|||||||
@@ -18,4 +18,11 @@ go vet ./...
|
|||||||
echo "[check] running go test"
|
echo "[check] running go test"
|
||||||
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"
|
echo "[check] complete"
|
||||||
|
|||||||
Reference in New Issue
Block a user