Merge pull request #398 from shipwright-io/dependabot/github_actions/… #937
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
| --- | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| name: End-to-End (E2E) Tests | |
| jobs: | |
| test-e2e: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| kubernetes: | |
| - v1.33.7 | |
| - v1.35.0 | |
| max-parallel: 2 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| submodules: recursive | |
| - name: Setup Go and ko | |
| uses: ./.github/actions/setup | |
| - uses: helm/kind-action@v1 | |
| with: | |
| version: v0.31.0 | |
| node_image: kindest/node:${{ matrix.kubernetes }} | |
| cluster_name: kind | |
| config: test/kind/config.yaml | |
| wait: 120s | |
| - uses: shipwright-io/setup@v1 | |
| with: | |
| tekton-version: v1.9.1 | |
| shipwright-ref: main | |
| cli-ref: _ignore | |
| - name: CLI Build (shp) | |
| run: make build | |
| - name: End-to-End Tests | |
| run: make test-e2e | |
| - name: Pods | |
| if: ${{ failure() }} | |
| run: | | |
| echo "# Pods:" | |
| kubectl get pod -A -o yaml |