Merge pull request #149 from Tehsmash/fix_xargs #17
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 and Test | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- .github/ISSUE_TEMPLATE/** | |
- .github/workflows/cd.yaml | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
paths-ignore: | |
- .github/ISSUE_TEMPLATE/** | |
- .github/workflows/cd.yaml | |
workflow_dispatch: | |
jobs: | |
helm-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Helm | |
uses: azure/setup-helm@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
check-latest: true | |
- name: Set up chart-testing | |
uses: helm/chart-testing-action@v2 | |
- name: Create kind cluster | |
uses: helm/kind-action@v1 | |
- name: Run chart-testing | |
run: ct lint-and-install --chart-dirs . --charts . |