Skip to content

tooling: use gpt-5.5 in AGENTS.md #9

tooling: use gpt-5.5 in AGENTS.md

tooling: use gpt-5.5 in AGENTS.md #9

Workflow file for this run

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