Merge pull request #44 from laiso/leaderboard-update/20157260672 #32
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 CI Test | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| workflow_dispatch: | |
| jobs: | |
| e2e-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: oven-sh/setup-bun@v2 | |
| - run: bun install --frozen-lockfile | |
| - name: Install agent CLI (local mode) | |
| run: | | |
| set -euo pipefail | |
| agent="codex" | |
| echo "Installing CLI for agent: $agent" | |
| npm install -g @openai/codex | |
| - name: Run single benchmark test | |
| env: | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| run: | | |
| bun src/index.ts \ | |
| --agent codex \ | |
| --model gpt-5-nano \ | |
| --provider openai \ | |
| --exercise hello-world \ | |
| --verbose |