mirror of https://github.com/artifacthub/hub.git
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
name: Helm CI
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "charts/**"
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
lint-and-test:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up Helm
|
|
uses: azure/setup-helm@v3
|
|
with:
|
|
version: v3.9.2
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.7
|
|
- name: Set up chart-testing
|
|
uses: helm/chart-testing-action@v2.4.0
|
|
- name: Run chart-testing (list-changed)
|
|
id: list-changed
|
|
run: |
|
|
changed=$(ct --config .ct.yaml list-changed --target-branch ${{ github.event.repository.default_branch }})
|
|
if [[ -n "$changed" ]]; then
|
|
echo "changed=true" >> $GITHUB_OUTPUT
|
|
fi
|
|
- name: Run chart-testing (lint)
|
|
run: ct lint --config .ct.yaml --target-branch ${{ github.event.repository.default_branch }}
|
|
- name: Create kind cluster
|
|
uses: helm/kind-action@v1.8.0
|
|
if: steps.list-changed.outputs.changed == 'true'
|
|
- name: Run chart-testing (install)
|
|
run: ct install --config .ct.yaml
|