Skip to content

Commit

Permalink
Add github action for terraform commands
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanDumortier committed Apr 19, 2024
1 parent 19247b8 commit 4e25d33
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/terraform.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run Terraform commands

on:
push:
paths:
- "**.tf"

jobs:
checkout:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: main

terraform-fmt:
runs-on: ubuntu-latest
steps:
- name: Run terraform fmt
uses: dflook/terraform-fmt@v1
with:
path: .

terraform-validate:
runs-on: ubuntu-latest
steps:
- name: Run terraform validate
uses: dflook/terraform-validate@v1
with:
path: .

0 comments on commit 4e25d33

Please sign in to comment.