Skip to content

Update README.md

Update README.md #15

Workflow file for this run

name: Lint YAML & Helm
on: [push, pull_request]
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ibiqlik/action-yamllint@v3
with:
strict: false
helm-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Helm
uses: azure/setup-helm@v4
- name: Lint charts
run: |
for c in helm/charts/*; do
[ -d "$c" ] && helm lint "$c" || true
done