Skip to content

Commit

Permalink
ci: lint charts
Browse files Browse the repository at this point in the history
  • Loading branch information
ludovicm67 committed Jul 10, 2024
1 parent 42a8d54 commit d6138a4
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Lint Charts

on:
push:

jobs:
lint:
permissions:
contents: read

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Helm
uses: azure/setup-helm@v4
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

- name: Lint Helm Charts
run: |
helm lint zazuko/*

0 comments on commit d6138a4

Please sign in to comment.