Dev to Main — March 2026 #7
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: Annotation Benchmark | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| benchmark: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| container: python:3.11.9 | |
| services: | |
| postgres: | |
| image: postgres:15 | |
| env: | |
| POSTGRES_PASSWORD: postgres | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| env: | |
| POSTGRES_PASSWORD: postgres | |
| POSTGRES_USER: postgres | |
| POSTGRES_DB: postgres | |
| POSTGRES_HOST: postgres | |
| POSTGRES_PORT: 5432 | |
| GOOGLE_API_KEY: TEST | |
| GOOGLE_CSE_ID: TEST | |
| PROFILE_DIR: profiles | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install uv and set the python version | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Install the project | |
| run: uv sync --locked --group dev | |
| - name: Create profiles directory | |
| run: mkdir -p profiles | |
| - name: Run benchmark tests | |
| run: | | |
| uv run pytest tests/automated/integration/benchmark \ | |
| -m "manual and benchmark" \ | |
| --benchmark-json=benchmark-results.json \ | |
| -v | |
| - name: Post benchmark summary | |
| run: uv run python scripts/post_benchmark_summary.py | |
| - name: Upload benchmark results | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: benchmark-results-${{ github.sha }} | |
| path: | | |
| benchmark-results.json | |
| profiles/ | |
| retention-days: 90 |