Skip to content

Commit

Permalink
Merge pull request #1 from zazuko/lint
Browse files Browse the repository at this point in the history
Run the lint of the charts in the CI
  • Loading branch information
ludovicm67 authored Jul 10, 2024
2 parents 42a8d54 + d6138a4 commit 6049455
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 6049455

Please sign in to comment.