23 lines
381 B
YAML
23 lines
381 B
YAML
name: Test Helm Chart
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
helm-lint:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: alpine/helm:3.14.0
|
|
steps:
|
|
- name: Clone repo manually
|
|
run: |
|
|
git clone "${CI_REPO_URL}" .
|
|
git fetch --tags
|
|
|
|
- name: Run Helm lint
|
|
run: |
|
|
helm lint ./duino-miner-helm
|