test #80
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: Test cronjob chart | |
on: | |
push: | |
paths: | |
- cronjob/** | |
- simple/** | |
- .github/workflows/** | |
pull_request: | |
paths: | |
- cronjob/** | |
- simple/** | |
- .github/workflows/** | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
helm-version: | |
- 3.1.0 | |
- 3.2.3 | |
- 3.2.4 | |
- 3.3.0 | |
- latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Helm ${{ matrix.helm-version }} | |
uses: azure/[email protected] | |
with: | |
version: ${{ matrix.helm-version }} | |
- name: Install Helm unittest plugin | |
run: | | |
helm plugin install https://github.com/helm-unittest/helm-unittest.git | |
- name: Run cronjob chart tests | |
run: | | |
helm unittest cronjob | |
- name: Run simple chart tests | |
run: | | |
helm unittest simple |