Skip to content

Bump terraform-docs/gh-actions from 1.2.0 to 1.3.0 #83

Bump terraform-docs/gh-actions from 1.2.0 to 1.3.0

Bump terraform-docs/gh-actions from 1.2.0 to 1.3.0 #83

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Terraform
uses: hashicorp/setup-terraform@651471c36a6092792c552e8b1bef71e592b462d8 # v3.1.1
- name: Lint
run: |
terraform fmt -check
- name: Validate
run: |
terraform init
terraform validate