Skip to content

Commit

Permalink
Merge pull request #3 from klebercabral/klebercabral-patch-1
Browse files Browse the repository at this point in the history
Create validate.yml
  • Loading branch information
gomex committed Apr 12, 2021
2 parents 464e463 + 8216753 commit a1f08d2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: hashicorp/setup-terraform@v1.2.1
- name: Terraform fmt
id: fmt
run: terraform fmt -check
continue-on-error: true
- name: Terraform Init
id: init
run: terraform init
- name: Terraform Validate
id: validate
run: terraform validate -no-color

0 comments on commit a1f08d2

Please sign in to comment.