Merge pull request #12 from dhoppe/github_actions

Add workflow for Github Actions
This commit is contained in:
Karim Naufal 2022-01-13 09:16:49 +00:00 committed by GitHub
commit 5e9ddc16ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

24
.github/workflow/terraform.yaml vendored Normal file
View File

@ -0,0 +1,24 @@
---
name: Terraform
on:
push:
branches:
- master
pull_request:
jobs:
terraform:
name: Validate Terraform
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Terraform
uses: hashicorp/setup-terraform@v1
- name: Terraform Format
run: terraform fmt -check -diff
- name: Terraform Init
run: terraform init
- name: Terraform Validate
run: terraform validate -no-color