mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-13 13:31:29 -05:00
39 lines
979 B
YAML
39 lines
979 B
YAML
name: Terraform validation
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "**.tf"
|
|
pull_request:
|
|
paths:
|
|
- "**.tf"
|
|
|
|
jobs:
|
|
tfsec:
|
|
name: terraform
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@8230315d06ad95c617244d2f265d237a1682d445
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: Setup Terraform
|
|
uses: hashicorp/setup-terraform@a2a0e9d877cffca80feedfc0d9072834be6c42e7
|
|
|
|
- name: Terraform format and validate
|
|
shell: bash
|
|
run: |
|
|
dirs=$(find . -type f -name "*.tf" -exec dirname "{}" \; | sort -ud)
|
|
result=0
|
|
for dir in $dirs; do
|
|
echo "Checking $dir"
|
|
terraform -chdir=$dir init || result=1
|
|
terraform -chdir=$dir fmt -check=true -diff=true || result=1
|
|
terraform -chdir=$dir validate -no-color || result=1
|
|
done
|
|
exit $result
|