2020-02-12 03:09:39 +00:00
|
|
|
name: terraform
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
terraform:
|
|
|
|
name: Terraform
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- name: fmt
|
|
|
|
uses: hashicorp/terraform-github-actions@master
|
|
|
|
with:
|
2020-03-05 01:44:31 +00:00
|
|
|
tf_actions_version: 0.12.21
|
2020-02-12 03:09:39 +00:00
|
|
|
tf_actions_subcommand: fmt
|
|
|
|
- name: init
|
|
|
|
uses: hashicorp/terraform-github-actions@master
|
|
|
|
with:
|
2020-03-05 01:44:31 +00:00
|
|
|
tf_actions_version: 0.12.21
|
2020-02-12 03:09:39 +00:00
|
|
|
tf_actions_subcommand: init
|
|
|
|
- name: validate
|
|
|
|
uses: hashicorp/terraform-github-actions@master
|
|
|
|
with:
|
2020-03-05 01:44:31 +00:00
|
|
|
tf_actions_version: 0.12.21
|
2020-02-12 03:09:39 +00:00
|
|
|
tf_actions_subcommand: validate
|