Skip to content

Introduce Helm Chart Test Framework Along With Basic Tests #19

Introduce Helm Chart Test Framework Along With Basic Tests

Introduce Helm Chart Test Framework Along With Basic Tests #19

Workflow file for this run

name: Lint
on:
pull_request:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: terraform-linters/setup-tflint@v4
- name: Init TFLint
run: tflint --init
env:
# https://github.com/terraform-linters/tflint/blob/master/docs/user-guide/plugins.md#avoiding-rate-limiting
GITHUB_TOKEN: ${{ github.token }}
- name: Run TFLint
run: tflint -f compact --recursive --config "$(pwd)/.tflint.hcl"
fmt:
name: fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: terraform fmt -check -recursive