-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #385 from cagov/tr_update_pre_commit_checks_217
Tr update pre commit checks 217
- Loading branch information
Showing
3 changed files
with
32 additions
and
17 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
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 |
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