Skip to content

Commit

Permalink
⚡ add terraform fmt workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
colinwilson committed Feb 7, 2022
1 parent 4b59caf commit d8bdab6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Terraform'

on:
pull_request:

jobs:
terraform:
name: 'Terraform Format'
runs-on: ubuntu-20.04

defaults:
run:
shell: bash

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Terraform
uses: hashicorp/setup-terraform@v1

- name: Terraform Format
run: terraform fmt -check

0 comments on commit d8bdab6

Please sign in to comment.