Skip to content

Commit

Permalink
gh action to check template linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel Wallschlaeger committed Aug 4, 2023
1 parent bf9865f commit d031dd7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/helm-lint-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: helm lint test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
helm-check:
runs-on: ubuntu-latest
steps:
- uses: azure/setup-helm@v3
with:
version: '3.12.0' # default is latest (stable)
- name: build dependencies
run: |
helm dependency update
working-directory: ./deployment/geonode/
- uses: actions/checkout@master
- name: helm-check
uses: igabaydulin/[email protected]
env:
CHART_LOCATION: ./deployment/geonode/
CHART_VALUES: ./minikube-values.yaml

0 comments on commit d031dd7

Please sign in to comment.