Skip to content

Bump hashicorp/setup-terraform from 3.0.0 to 3.1.0 #99

Bump hashicorp/setup-terraform from 3.0.0 to 3.1.0

Bump hashicorp/setup-terraform from 3.0.0 to 3.1.0 #99

Workflow file for this run

name: Validate, Lint and Test
on:
push:
branches:
- main
pull_request:
jobs:
lint-and-validate:
name: "Terraform fmt and validate"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: Setup Terraform
uses: hashicorp/setup-terraform@97f030cf6dc0b4f5e0da352c7bca9cca34579800 # v3.1.0
- name: Lint
run: |
terraform fmt -check
- name: Validate
run: |
terraform init
terraform validate