Update kubebuilder #118
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: end2end Test | |
on: | |
- pull_request | |
jobs: | |
e2etest: | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- v1.21 | |
- v1.31 | |
setup: | |
- minimal | |
- production | |
runs-on: ubuntu-latest | |
name: test on minikube | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Start minikube | |
uses: medyagh/setup-minikube@master | |
with: | |
kubernetes-version: ${{ matrix.version }} | |
- name: Build and run wave | |
run: hack/run-test-in-minikube.sh ${{ matrix.setup }} |