mirror of
https://github.com/outbackdingo/proxmox-cloud-controller-manager.git
synced 2026-01-27 10:20:13 +00:00
29 lines
579 B
YAML
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
|