Add workflow for Github Actions

This commit is contained in:
Dennis Hoppe 2022-01-13 10:12:14 +01:00
parent 01d568baf1
commit 4b8e7d9ba1
No known key found for this signature in database
GPG Key ID: F0DCF4EC6237CDD2

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