docs: probe four engine lanes on one oracle and record the cheapest v… #21
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: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| with: | |
| persist-credentials: false | |
| - uses: astral-sh/setup-uv@d0d8abe699bfb85fec6de9f7adb5ae17292296ff # v6 | |
| with: | |
| enable-cache: true | |
| - run: uv sync --extra dev | |
| - run: uv run pytest | |
| - name: Lint release surface | |
| run: uv run ruff check scripts integration tests | |
| - run: >- | |
| bash -n install-universal.sh integration/cli/codex-heavy-context | |
| scripts/neutral_install_smoke.sh scripts/remote_bootstrap_smoke.sh | |
| neutral-install: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| with: | |
| persist-credentials: false | |
| - name: Fresh HOME universal install | |
| run: bash scripts/neutral_install_smoke.sh | |
| - name: Standalone remote-bootstrap path | |
| run: bash scripts/remote_bootstrap_smoke.sh |