Skip to content

Commit

Permalink
fix : validate stdout enclosed variables with quotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Shayan-Ghani committed Aug 18, 2024
1 parent 9ef1c3d commit 55dcc13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ jobs:
run: terraform validate -no-color

- name: validate stdout
run: echo ${{ steps.validate.outputs.stdout }}
run: echo "${{ steps.validate.outputs.stdout }}"

- name: validate sterr
run: echo ${{ steps.validate.outputs.stderr }}
run: echo "${{ steps.validate.outputs.stderr }}"

- name: validate exitcode
run: echo ${{ steps.validate.outputs.exitcode }}
run: echo "${{ steps.validate.outputs.exitcode }}"

lint-vault-terraform:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 55dcc13

Please sign in to comment.