Merge pull request #8 from innovatrics/feature/4-24-bump #93
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: Package and lint | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- 'v*' | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup helm CLI | |
uses: azure/setup-helm@v3 | |
with: | |
# this is needed only temporarily - see https://github.com/helm/helm/issues/12423 | |
version: 3.12.3 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build helm dependencies | |
run: | | |
helm dependency build . | |
- name: Lint helm | |
run: | | |
helm lint . | |
# we package just to validate | |
- name: Package helm | |
run: | | |
helm package . | |
- uses: actions/setup-python@v3 | |
- uses: gabe565/setup-helm-docs-action@v1 | |
- uses: pre-commit/[email protected] |