We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2b64d9 commit 33027a5Copy full SHA for 33027a5
.github/workflows/lint.yml
.github/workflows/linter.yml
@@ -3,14 +3,12 @@ name: linter
3
# This workflow is triggered on pushes to the repository.
4
on:
5
push:
6
-
7
pull_request:
8
branches:
9
- main
10
- master
11
workflow_dispatch:
12
13
14
jobs:
15
terraform-validate:
16
name: code format
@@ -20,6 +18,12 @@ jobs:
20
18
# https://github.com/hashicorp/setup-terraform
21
19
- uses: hashicorp/setup-terraform@v2
22
+ - name: Cache terraform folder
+ uses: actions/cache@v2
23
+ with:
24
+ path: ./.terraform
25
+ key: terraform
26
+
27
- name: terraform fmt
28
run: terraform fmt -check -recursive -diff
29
continue-on-error: true
0 commit comments