swap out station id + lane for detector id as unique key in imputation models #239
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 |