Allow passing volumes & volumeMounts in values
#76
Workflow file for this run
This file contains hidden or 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: Go | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '>=1.21.0' | |
| - name: Check Formating | |
| run: make checkfmt | |
| - name: Format Code | |
| run: make fmt | |
| - name: Go Vet | |
| run: make vet | |
| - name: Go Race | |
| run: make race | |
| - name: Gocyclo | |
| run: make gocyclo | |
| - name: Lint | |
| run: make lint | |
| - name: Ineffassign | |
| run: make ineffassign | |
| - name: Misspell | |
| run: make misspell | |
| - name: Helm Lint | |
| run: make helm_lint | |
| test: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '>=1.21.0' | |
| - name: Test | |
| run: make test | |
| - name: Benchmark | |
| run: make benchmark | |
| - name: Coverage | |
| run: make coverage | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '>=1.21.0' | |
| - name: Compile | |
| run: make |