update station health and develop monthly aggregation model for PeMS staton Health #30
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: terraform-checks | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
##env: | |
## TFLINT_LOG: debug | |
jobs: | |
terraform-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup terraform | |
uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_version: v1.4.0 | |
- name: Install tflint | |
run: | | |
curl -s https://raw.githubusercontent.com/terraform-linters/\ | |
tflint/master/install_linux.sh | bash | |
- name: Run terraform fmt | |
run: | | |
terraform fmt | |
- name: Run terraform validate | |
run: | | |
terraform validate | |
- name: Run terraform tflint | |
run: | | |
tflint --chdir=terraform/ --recursive |