colab: phase2 eval notebook — ablation (G2.3) + overlap A/B (G2.2) at… #41
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install deps | |
| run: pip install --quiet pytest jsonschema | |
| - name: Capsule + harness tests | |
| run: pytest capsule/tests benchmarks/harness/tests -q | |
| - name: Benchmark task structural validation | |
| run: python3 benchmarks/harness/validate_tasks.py --tasks-dir benchmarks/tasks |