[pre-commit.ci] pre-commit autoupdate #787
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Terraform" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
terraform: | |
name: "Terraform" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: 1.4.2 | |
- name: Terraform Format | |
id: fmt | |
run: terraform fmt -check | |
- name: Terraform Init infra | |
id: init-infra | |
working-directory: ./infra | |
run: terraform init | |
- name: Terraform Validate infra | |
id: validate-infra | |
working-directory: ./infra | |
run: terraform validate -no-color | |
- name: Terraform Init localstack-services | |
id: init-localstack-services | |
working-directory: ./infra/localstack-services | |
run: terraform init | |
- name: Terraform Validate localstack-services | |
id: validate-localstack-services | |
working-directory: ./infra/localstack-services | |
run: terraform validate -no-color |