19 lines
358 B
YAML
19 lines
358 B
YAML
name: Test Helm Chart
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
helm-lint:
|
|
runs-on: [docker, kubernetes]
|
|
steps:
|
|
- name: Run Helm lint
|
|
uses: docker://alpine/helm:3.14.0
|
|
with:
|
|
entrypoint: ["sh", "-c"]
|
|
args:
|
|
- echo "Running helm lint on duino-miner-helm chart" && helm lint .
|