Skip to content

Bump actions/checkout from 4.1.0 to 4.1.2 #12

Bump actions/checkout from 4.1.0 to 4.1.2

Bump actions/checkout from 4.1.0 to 4.1.2 #12

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@9bb56186c3b09b4f86b1c65136769dd318469633 # 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