feat: use list instead of string for extra volumes and extra volume mounts #4
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: Push & PR to the main branch | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Helm | |
uses: ./.github/actions/setup_helm | |
- name: Run linter | |
run: helm lint | |
unit-test: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Helm | |
uses: ./.github/actions/setup_helm | |
- name: Install Helm unit test plugin | |
run: helm plugin install https://github.com/helm-unittest/helm-unittest.git | |
- name: Run unit tests | |
run: helm unittest --color . |