25 lines
498 B
YAML
25 lines
498 B
YAML
|
---
|
||
|
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
|