Skip to content

Merge pull request #96 from asfadmin/cjl/feature/v18.2.0.0 #18

Merge pull request #96 from asfadmin/cjl/feature/v18.2.0.0

Merge pull request #96 from asfadmin/cjl/feature/v18.2.0.0 #18

Workflow file for this run

name: lint
on:
push:
branches:
- master
- main
pull_request:
jobs:
tflint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
name: Checkout source code
- 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@v1
name: Setup TFLint
with:
tflint_version: v0.21.0
- name: Show version
run: tflint --version
- name: TFLint - daac module
run: tflint daac
- name: TFLint - dashboard module
run: tflint dashboard
- name: TFLint - rds module
run: tflint rds
- name: TFLint - workflows module
run: tflint workflows