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 4380159 commit cfb911fCopy full SHA for cfb911f
.github/workflows/pipeline.yaml
@@ -37,17 +37,22 @@ jobs:
37
project_id: ${{ env.PIPELINE_PROJECT_ID }}
38
credentials_json: ${{ env.PIPELINE_SA_KEY }}
39
40
- - name: Setup Terraform
41
- uses: hashicorp/setup-terraform@v3
42
-
+ - uses: hashicorp/setup-terraform@v3
+
+ - name: Terraform fmt
43
+ id: fmt
44
+ run: terraform fmt -check
45
+ continue-on-error: true
46
47
- name: Terraform Init
- run: |
- cd terraform/dev/
- terraform init
48
+ id: init
49
+ run: terraform init
50
51
+ - name: Terraform Validate
52
+ id: validate
53
+ run: terraform validate -no-color
54
55
- name: Terraform Plan
56
id: plan
- terraform plan -no-color
57
+ run: terraform plan -no-color
58
continue-on-error: true
0 commit comments