Skip to content

feat: create helm release terraform module #2

feat: create helm release terraform module

feat: create helm release terraform module #2

Workflow file for this run

name: Check Terraform Module and Generate Documentation
on:
- pull_request
jobs:
terraform_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Setup Terraform
uses: hashicorp/[email protected]
with:
terraform_version: 1.5.7
- name: Terraform fmt
id: fmt
run: terraform fmt -check
continue-on-error: false
- name: Terraform Init
id: init
run: terraform init
- name: Terraform Validate
id: validate
run: terraform validate -no-color
continue-on-error: false