| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- name: Helm
- on:
- push:
- tags:
- - '*'
- paths:
- - 'deploy/charts/**'
- pull_request:
- branches: main
- paths:
- - 'deploy/charts/**'
- jobs:
- lint-and-test:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- with:
- fetch-depth: 0
- - name: Generate chart
- run: |
- make crds-to-chart
- - name: Set up Helm
- uses: azure/setup-helm@v1
- with:
- version: v3.4.2
- - uses: actions/setup-python@v2
- with:
- python-version: 3.7
- - name: Set up chart-testing
- uses: helm/chart-testing-action@v2.0.1
- - name: Run chart-testing (list-changed)
- id: list-changed
- run: |
- changed=$(ct list-changed --config=.github/ci/ct.yaml)
- if [[ -n "$changed" ]]; then
- echo "::set-output name=changed::true"
- fi
- - name: Run chart-testing (lint)
- run: ct lint --config=.github/ci/ct.yaml
- - name: Create kind cluster
- uses: helm/kind-action@v1.1.0
- if: steps.list-changed.outputs.changed == 'true'
- - name: Run chart-testing (install)
- run: ct install --config=.github/ci/ct.yaml
|