Skip to content

Create README.md

Create README.md #6

Workflow file for this run

Check failure on line 1 in .github/workflows/terraform.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/terraform.yml

Invalid workflow file

You have an error in your yaml syntax on line 1
name: 'Terraform GitHub Actions'
#on:
#push:
branches:
- Dev
pull_request:
jobs:
terraform:
name: 'Terraform'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v2
- name: 'Setup Terraform'
uses: hashicorp/setup-terraform@v1
with:
terraform_version: 1.0.0
- name: 'Terraform Format'
id: fmt
run: terraform fmt -check
- name: 'Terraform Init'
id: init
run: terraform init
- name: 'Terraform Validate'
id: validate
run: terraform validate