| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- name: Helm
- on:
- push:
- branches:
- - main
- - release-*
- paths:
- - 'deploy/charts/**'
- pull_request:
- paths:
- - 'deploy/charts/**'
- workflow_dispatch: {}
- jobs:
- lint-and-test:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- with:
- fetch-depth: 0
- - name: Generate chart
- run: |
- make helm.generate
- - 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
|