Skip to content

added logo

added logo #26

Workflow file for this run

name: Lint
on: push
jobs:
lint-yaml:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install yamllint
run: sudo apt update && sudo apt-get install -y yamllint
- name: run yamllint
run: make yaml-lint
lint-helm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: azure/setup-helm@v3
with:
version: 'v3.10.3'
- name: run helm lint
run: make helm-lint
lint-terraform:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout source code
- uses: actions/cache@v3
name: Cache plugin dir
with:
path: ~/.tflint.d/plugins
key: tflint-${{ hashFiles('.tflint.hcl') }}
- uses: terraform-linters/setup-tflint@v3
name: Setup TFLint
with:
tflint_version: v0.45.0
- uses: hashicorp/setup-terraform@v2
- 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: lint terraform
run: make terraform-lint