chore: change terraform backend from k8s secret to git managed file based #35
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: Check formatting | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code into workspace directory | |
uses: actions/checkout@v2 | |
- name: Terraform fmt | |
uses: hashicorp/setup-terraform@v2 | |
- run: terraform fmt -recursive . | |
- run: git diff --exit-code |