Skip to content

chore(deps): update jaxxstorm/action-install-gh-release action to v1.11.0 #60

chore(deps): update jaxxstorm/action-install-gh-release action to v1.11.0

chore(deps): update jaxxstorm/action-install-gh-release action to v1.11.0 #60

Workflow file for this run

name: 'terraform'
# This workflow verifies that the Terraform configs are valid.
# https://learn.hashicorp.com/tutorials/terraform/automate-terraform
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
env:
TF_IN_AUTOMATION: 1
TF_VERSION: ${{ matrix.tf }}
strategy:
matrix:
os: [ubuntu-latest]
tf: [1]
steps:
- name: Checkout from Github
uses: actions/checkout@v4
- name: Install Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: ${{ env.TF_VERSION }}
- name: Check Terraform formatting
id: fmt
run: terraform fmt
continue-on-error: true
- name: Initialize Terraform, Modules, and Plugins
id: init
run: terraform init -input=false
- name: Validate Terraform syntax
id: validate
run: terraform validate -no-color