Markus Pesch
5b2c089d6f
Some checks failed
Helm / helm-lint (pull_request) Successful in 14s
Helm / helm-unittest (pull_request) Successful in 17s
Helm / helm-lint (push) Successful in 14s
Helm / helm-unittest (push) Successful in 15s
Release / generate-chart-publish (push) Failing after 29s
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
38 lines
790 B
YAML
38 lines
790 B
YAML
name: Helm
|
|
|
|
on:
|
|
pull_request:
|
|
types: [ "opened", "reopened", "synchronize" ]
|
|
push: {}
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
helm-lint:
|
|
container:
|
|
image: docker.io/volkerraschek/helm:3.16.1
|
|
runs-on:
|
|
- ubuntu-latest
|
|
steps:
|
|
- name: Install tooling
|
|
run: |
|
|
apk update
|
|
apk add git npm
|
|
- uses: actions/checkout@v4.2.2
|
|
- name: Lint helm files
|
|
run: |
|
|
helm lint --values values.yaml .
|
|
|
|
helm-unittest:
|
|
container:
|
|
image: docker.io/volkerraschek/helm:3.16.1
|
|
runs-on:
|
|
- ubuntu-latest
|
|
steps:
|
|
- name: Install tooling
|
|
run: |
|
|
apk update
|
|
apk add git npm
|
|
- uses: actions/checkout@v4.2.2
|
|
- name: Unittest
|
|
run: |
|
|
helm unittest --strict --file 'unittests/**/*.yaml' ./ |