https://github.com/andgineer/terraform-aws-cloudmap/issues/1 #5
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: Tflint | |
on: | |
push: | |
branches: | |
- main | |
permissions: read-all | |
jobs: | |
tflint-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name : Check out Git Repository | |
uses: actions/checkout@v3 | |
- uses: actions/cache@v2 | |
name: Cache plugin dir | |
with: | |
path: ~/.tflint.d/plugins | |
key: ${{ matrix.os }}-tflint-${{ hashFiles('.tflint.hcl') }} | |
- uses: terraform-linters/setup-tflint@v2 | |
name: Setup TFLint | |
with: | |
github_token: ${{ secrets.CI_GITHUB_TOKEN }} | |
- name: Show version | |
run: tflint --version | |
- name: Init TFLint | |
run: tflint --init | |
# Run tflint command in each directory recursively # use --force if you want to continue with workflow although errors are there | |
- name: Run TFLint | |
run: tflint -f compact --recursive |