Comment out and document code to create a DB user. (#65) #119
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: CI Infra | |
on: | |
push: | |
paths: | |
- infra/** | |
- .github/workflows/ci.infra.yaml | |
defaults: | |
run: | |
working-directory: infra/ | |
jobs: | |
check-terraform-format: | |
name: Check Terraform format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_version: 1.4 | |
terraform_wrapper: false | |
- name: Run infra-lint | |
run: | | |
echo "If this fails, run 'make infra-format'" | |
make infra-lint |