chore: enable Dependabot weekly GitHub Actions bumps #29
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: Unit Tests | |
| on: | |
| pull_request: | |
| workflow_call: | |
| workflow_dispatch: | |
| concurrency: | |
| group: run-tests-group-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Unit Tests | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| working-directory: charts/unit-tests | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Install Helm | |
| run: | | |
| curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash | |
| helm plugin install https://github.com/quintush/helm-unittest | |
| - name: Update dependencies | |
| run: | | |
| helm dependencies update | |
| - name: Execute tests | |
| run: | | |
| helm unittest -3 . |