-
-
Notifications
You must be signed in to change notification settings - Fork 5
54 lines (48 loc) · 1.3 KB
/
linter.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
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/setup-terraform@v2
- name: Cache terraform folder
uses: actions/cache@v3
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/cache@v3
name: Cache tflint plugin dir
with:
path: ~/.tflint.d/plugins
key: ${{ matrix.os }}-tflint-${{ hashFiles('.tflint.hcl') }}
- uses: terraform-linters/setup-tflint@v3
name: setup tflint
- name: init tflint
run: tflint --init --config .tflint.hcl
- name: run tflint
run: tflint -f compact --config .tflint.hcl