Skip to content

Commit

Permalink
Merge pull request #43 from zalf-rdm/issue#10_automated_testing
Browse files Browse the repository at this point in the history
gh action to check template linting
  • Loading branch information
mwallschlaeger committed Aug 7, 2023
2 parents bf9865f + 6c6aeae commit c7d3e96
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/helm-lint-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: helm lint test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

permissions:
contents: read

jobs:
helm-check:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: install helm
uses: azure/setup-helm@v3
with:
version: '3.12.0' # default is latest (stable)
- name: build dependencies
run: helm dependency update deployment/geonode/
- name: helm-check
uses: igabaydulin/[email protected]
env:
CHART_LOCATION: ./deployment/geonode/
CHART_VALUES: ./deployment/geonode/values.yaml

0 comments on commit c7d3e96

Please sign in to comment.