fix(helm): infer Keycloak DB driver from external database URL #120
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: Helm Unit Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - release | |
| paths: | |
| - "deploy/helm/**" | |
| workflow_dispatch: | |
| jobs: | |
| unittest: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: deploy/helm | |
| shell: bash | |
| steps: | |
| - name: Checkout the code | |
| uses: actions/checkout@v4 | |
| - name: Setup Helm | |
| uses: azure/setup-helm@v4 | |
| with: | |
| version: v4.1.4 | |
| # charts/ is gitignored, so pull subcharts before running the tests. | |
| # Done here, not in the container, which can't write to the mounted dir. | |
| - name: Build chart dependencies | |
| run: helm dependency build | |
| - name: Unittest | |
| run: | | |
| docker run --rm -v $(pwd):/apps helmunittest/helm-unittest . |