Skip to content

Commit 870b650

Browse files
committed
fix : wrong echo, addressing plan instead of validate
1 parent 0a6a676 commit 870b650

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,14 @@ jobs:
3535
id: validate
3636
run: terraform validate -no-color
3737

38-
- run: echo ${{ steps.plan.outputs.stdout }}
39-
- run: echo ${{ steps.plan.outputs.stderr }}
40-
- run: echo ${{ steps.plan.outputs.exitcode }}
38+
- name: validate stdout
39+
run: echo ${{ steps.validate.outputs.stdout }}
40+
41+
- name: validate sterr
42+
run: echo ${{ steps.validate.outputs.stderr }}
43+
44+
- name: validate exitcode
45+
run: echo ${{ steps.validate.outputs.exitcode }}
4146

4247
lint-vault-terraform:
4348
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)