Skip to content

feat : first version of lint and test workflow #1

feat : first version of lint and test workflow

feat : first version of lint and test workflow #1

Workflow file for this run

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