Skip to content

Bump actions/checkout from 4.1.5 to 4.1.6 (#45) #106

Bump actions/checkout from 4.1.5 to 4.1.6 (#45)

Bump actions/checkout from 4.1.5 to 4.1.6 (#45) #106

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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Setup Terraform
uses: hashicorp/setup-terraform@97f030cf6dc0b4f5e0da352c7bca9cca34579800 # v3.1.0
- name: Lint
run: |
terraform fmt -check
- name: Validate
run: |
terraform init
terraform validate