wip: sidecar handler interface #139
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: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # Fan out the suites as parallel jobs, each a call into the reusable workflow. | |
| # The shared setup (build, kind, deploy) lives once in e2e-suite.yaml; the | |
| # matrix runs gang and quantum concurrently. | |
| e2e: | |
| strategy: | |
| fail-fast: false # one suite failing should not cancel the other | |
| matrix: | |
| suite: [gang, quantum] | |
| uses: ./.github/workflows/e2e-suite.yaml | |
| with: | |
| suite: ${{ matrix.suite }} |