mirror of
https://github.com/Thumbscrew/k8s-charts.git
synced 2024-11-09 23:53:50 +00:00
23 lines
385 B
YAML
23 lines
385 B
YAML
name: Lint Charts
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
lint-charts:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install Helm
|
|
uses: azure/setup-helm@v3
|
|
with:
|
|
version: v3.12.0
|
|
|
|
- name: Lint charts
|
|
run: helm lint charts/* |