Files
proxmox-cloud-controller-ma…/.github/workflows/charts.yaml
Serge Logvinov eef9c9cd2e chore: bump deps
Updated dependencies

Signed-off-by: Serge Logvinov <serge.logvinov@sinextra.dev>
2023-11-10 16:36:17 +02:00

29 lines
579 B
YAML

name: Helm chart check
on:
pull_request:
branches:
- main
paths:
- 'charts/**'
jobs:
helm-lint:
name: Helm chart check
timeout-minutes: 5
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Unshallow
run: git fetch --prune --unshallow
- name: Install chart-testing tools
id: lint
uses: helm/chart-testing-action@v2.6.1
- name: Run helm chart linter
run: ct --config hack/ct.yml lint
- name: Run helm template
run: make helm-unit