fix: quotation marks added to unhealthy_interval value #83
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 Modules CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
validate: | |
name: Validate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Install Terraform | |
uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_version: 1.4.0 | |
- name: Run a Terraform init | |
run: terraform init | |
- name: Run a Terraform validate | |
run: terraform validate | |
- name: Run a Terraform fmt -check | |
run: terraform fmt -check | |
- uses: terraform-linters/setup-tflint@v3 | |
name: Setup TFLint | |
- name: Run TFLint | |
run: tflint |