Skip to content

Bump terraform-docs/gh-actions from 1.0.0 to 1.1.0 #13

Bump terraform-docs/gh-actions from 1.0.0 to 1.1.0

Bump terraform-docs/gh-actions from 1.0.0 to 1.1.0 #13

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@8ade135a41bc03ea155e62e844d188df1ea18608 # v3.5.2
- name: Setup Terraform
uses: hashicorp/setup-terraform@633666f66e0061ca3b725c73b2ec20cd13a8fdd1 # v2.0.3
- name: Lint
run: |
terraform fmt -check
- name: Validate
run: |
terraform init
terraform validate