Test Charts #298
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: Test Charts | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
merge_group: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/setup-helm@v4 | |
- name: Install helm-unittests | |
run: | | |
helm plugin install https://github.com/helm-unittest/helm-unittest.git | |
- name: Run Helm Lint | |
run: | | |
make helm-dependency-update | |
make lint | |
- name: Run Unit Tests | |
run: | | |
make test |