Add missing lastPerSubject entry to crd #282
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: e2e | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| e2e: | |
| name: e2e | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v6 | |
| - name: install kuttl | |
| run: | | |
| curl -L https://github.com/kudobuilder/kuttl/releases/download/v0.15.0/kubectl-kuttl_0.15.0_linux_x86_64 -o /usr/local/bin/kubectl-kuttl | |
| chmod +x /usr/local/bin/kubectl-kuttl | |
| - name: create kind cluster | |
| uses: helm/[email protected] | |
| with: | |
| install_only: true | |
| - name: set up helm | |
| uses: azure/setup-helm@v4 | |
| - name: run e2e test | |
| run: make test-e2e |