Issue#72 bug celery container is not starting properly and exiting right away #58
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 charts/geonode/ | |
- name: helm-check | |
uses: igabaydulin/[email protected] | |
env: | |
CHART_LOCATION: ./charts/geonode/ | |
CHART_VALUES: ./charts/geonode/values.yaml |