fix : invalid type for on gh-actions #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: BVSTACK CI Pipeline | |
on: | |
push: | |
branches: | |
- main | |
- actions | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint-boundary-terraform: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "boundary/terraform/" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: setup terraform cli | |
uses: hashicorp/setup-terraform@v3 | |
- name: Terraform fmt | |
id: fmt | |
run: terraform fmt -check | |
continue-on-error: true | |
- name: Terraform Init | |
id: init | |
run: terraform init | |
- name: Terraform Validate | |
id: validate | |
run: terraform validate -no-color | |
- run: echo ${{ steps.plan.outputs.stdout }} | |
- run: echo ${{ steps.plan.outputs.stderr }} | |
- run: echo ${{ steps.plan.outputs.exitcode }} | |
lint-vault-terraform: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "vault/terraform/" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: setup terraform cli | |
uses: hashicorp/setup-terraform@v3 | |
- name: Terraform fmt | |
id: fmt | |
run: terraform fmt -check | |
continue-on-error: true | |
- name: Terraform Init | |
id: init | |
run: terraform init | |
- name: Terraform Validate | |
id: validate | |
run: terraform validate -no-color | |
- run: echo ${{ steps.plan.outputs.stdout }} | |
- run: echo ${{ steps.plan.outputs.stderr }} | |
- run: echo ${{ steps.plan.outputs.exitcode }} | |
# lint-ansible: | |
# defaults: | |
# run: | |
# working-directory: ./scripts | |
# shell: bash | |
# steps: | |
# - name: check playbook and role's syntax | |
# run: bash ./scripts/linter.sh ansible |