Skip to content

common workflow test #11

common workflow test

common workflow test #11

Workflow file for this run

name: Fix terraform formatting
on:
pull_request:
types: [opened, synchronize, reopened, edited]
branches:
- main
- QA
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: hashicorp/setup-terraform@v2
with:
terraform_wrapper: false
- name: Terraform fmt
id: fmt
run: terraform fmt -check -recursive
continue-on-error: false