tooling: use gpt-5.5 in AGENTS.md #9
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: Lint | |
| on: | |
| push: | |
| paths: | |
| - "python/**" | |
| - "pyproject.toml" | |
| - "ruff.toml" | |
| - "ty.base.toml" | |
| - "uv.lock" | |
| - ".github/actions/**" | |
| - ".github/workflows/lint.yml" | |
| pull_request: | |
| paths: | |
| - "python/**" | |
| - "pyproject.toml" | |
| - "ruff.toml" | |
| - "ty.base.toml" | |
| - "uv.lock" | |
| - ".github/actions/**" | |
| - ".github/workflows/lint.yml" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| env: | |
| BRICKSIM_SKIP_NATIVE_BUILD: "1" | |
| OMNI_KIT_ACCEPT_EULA: "1" | |
| jobs: | |
| lint: | |
| name: ruff + ty | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Free disk space | |
| uses: ./.github/actions/free-disk-space | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| cache-suffix: lint | |
| - name: Run Ruff | |
| run: uv run --group dev ruff check | |
| - name: Generate type checker config | |
| run: uv run --group dev bricksim-type-configs -y | |
| - name: Run ty | |
| run: uv run --group dev ty check |