update airflow 2c9c35f #2002
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate Terraform | |
# This work flow runs 'terraform validate' to check there isn't anything obviously wrong | |
on: [push] | |
jobs: | |
tf_fmt: | |
name: Validate Terraform | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v1 | |
- name: Terraform Init | |
uses: hashicorp/terraform-github-actions@master | |
with: | |
tf_actions_version: 1.1.3 | |
tf_actions_subcommand: 'init' | |
tf_actions_working_dir: 'terraform/unittests' | |
- name: Terraform Validate | |
uses: hashicorp/terraform-github-actions/[email protected] |