Add link to Helm in README #518
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: check-helm-chart | |
# yamllint disable-line rule:truthy | |
on: [push, pull_request] | |
jobs: | |
lint-chart: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.8.1 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.13 | |
- name: Set up chart-testing | |
uses: helm/chart-testing-action@v2 | |
- name: Run chart-testing | |
run: make test-helm-lint | |
install-chart: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.8.1 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.13 | |
- name: Set up chart-testing | |
uses: helm/chart-testing-action@v2 | |
- name: Create kind cluster | |
uses: helm/kind-action@v1 | |
- name: Run chart-testing | |
run: make test-helm-install |