Merge pull request #110 from flphvlck/fix-leader-endless-loop #198
This file contains hidden or 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: 'Terraform' | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| quickstart: | |
| name: 'Terraform' | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout the repository to the GitHub Actions runner | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - uses: hashicorp/setup-terraform@v1 | |
| - name: Terraform Version | |
| run: terraform version | |
| # Checks that all Terraform configuration files adhere to a canonical format | |
| - name: Terraform Format | |
| run: terraform fmt -recursive -check | |
| - name: Terraform init | |
| run: terraform init | |
| - name: Terraform Validate | |
| run: terraform validate |