This also enables the refactor to have multiple root level charts. Resolves #100 Signed-off-by: Marco Franssen <[email protected]>
39 lines
734 B
YAML
39 lines
734 B
YAML
name: Helm Chart CI
|
|
|
|
on:
|
|
pull_request:
|
|
types: [synchronize, opened, reopened]
|
|
paths-ignore:
|
|
- 'charts/**'
|
|
- '.github/workflows/helm-chart-ci.yaml'
|
|
- '.github/kind/conf/kind-config.yaml'
|
|
- '.github/tests/**/*.yaml'
|
|
- '.github/tests/**/*.sh'
|
|
- '.github/tests/**/*.json'
|
|
- 'examples/**/*.yaml'
|
|
- 'helm-docs.sh'
|
|
|
|
jobs:
|
|
lint-chart:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- run: 'echo "Skipping linter"'
|
|
|
|
checks:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- run: 'echo "Skipping checks"'
|
|
|
|
test:
|
|
runs-on: ubuntu-22.04
|
|
|
|
strategy:
|
|
matrix:
|
|
k8s:
|
|
- v1.27.2
|
|
- v1.26.4
|
|
- v1.25.9
|
|
|
|
steps:
|
|
- run: 'echo "Skipping tests"'
|