chore(deps): update dependency actions/checkout to v4.1.7 (.github/wo… #375
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: linter | |
# This workflow is triggered on pushes to the repository. | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
- master | |
workflow_dispatch: | |
jobs: | |
terraform-validate: | |
name: code format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
# https://github.com/hashicorp/setup-terraform | |
- uses: hashicorp/[email protected] | |
- name: Cache terraform folder | |
uses: actions/[email protected] | |
with: | |
path: ./.terraform | |
key: terraform | |
- name: terraform fmt | |
run: terraform fmt -check -recursive -diff | |
continue-on-error: true | |
- name: terraform init | |
run: | | |
terraform version | |
terraform init | |
- name: terraform validate | |
run: terraform validate | |
tflint: | |
name: "tflint" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
name: Cache tflint plugin dir | |
with: | |
path: ~/.tflint.d/plugins | |
key: ${{ matrix.os }}-tflint-${{ hashFiles('.tflint.hcl') }} | |
- uses: terraform-linters/[email protected] | |
name: setup tflint | |
- name: init tflint | |
run: tflint --init --config .tflint.hcl | |
- name: run tflint | |
run: tflint -f compact --config .tflint.hcl |