Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#66 from yonatankahana/helm-chart-lint
Browse files Browse the repository at this point in the history
Setup chart linter as github action
  • Loading branch information
k8s-ci-robot authored Mar 5, 2021
2 parents f491425 + 221db2f commit f08caa2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/helm-chart-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Lint Helm Charts

on: pull_request

jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set up chart-testing
uses: helm/[email protected]

- name: Run chart-testing (lint)
run: ct lint

0 comments on commit f08caa2

Please sign in to comment.