doc: add the v1.16.0 release entry #810
Workflow file for this run
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: | |
| branches: ["**"] | |
| tags-ignore: ["**"] | |
| pull_request: | |
| branches: ["**"] | |
| permissions: | |
| contents: read | |
| jobs: | |
| static-analysis: | |
| runs-on: ubuntu-latest | |
| env: | |
| FORCE_COLOR: "1" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v8.1.0 | |
| with: | |
| enable-cache: true | |
| activate-environment: true | |
| - name: Install dependencies | |
| run: uv sync --frozen --group lint | |
| - name: Python linting | |
| run: ruff check . | |
| - name: Python format checking | |
| run: ruff format --check . | |
| # The agentic lane's client libraries are layered in from their own | |
| # requirements file rather than from uv.lock, so they float; typing them for | |
| # real needs them installed, and a release that changes their API surfaces | |
| # here before the lane is next run by hand. | |
| - name: Python type checking | |
| run: uv run --with-requirements tests/agentic/requirements.txt mypy . |