POC tool discovery proposal (dont merge) #1528
Workflow file for this run
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 Tests | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths-ignore: | |
| - '**.md' | |
| - 'docs/**' | |
| - 'examples/**' | |
| - 'LICENSE' | |
| - 'charts/**' | |
| - 'evals/**' | |
| - '.coderabbit.yaml' | |
| - '.gitignore' | |
| push: | |
| branches: [main] | |
| paths-ignore: | |
| - '**.md' | |
| - 'docs/**' | |
| - 'examples/**' | |
| - 'LICENSE' | |
| - 'charts/**' | |
| - 'evals/**' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| e2e-tests: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 45 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24' | |
| - name: Create Kind cluster | |
| run: kind create cluster --name mcp-gateway --config config/kind/cluster-ci.yaml | |
| - name: Setup CI environment | |
| run: make ci-setup | |
| - name: Run E2E tests | |
| run: make test-e2e-ci | |
| - name: Collect logs on failure | |
| if: failure() | |
| run: | | |
| make ci-debug-logs | |
| make ci-debug-test-servers-logs |