Skip to content

doc: add the v1.16.0 release entry #810

doc: add the v1.16.0 release entry

doc: add the v1.16.0 release entry #810

Workflow file for this run

---
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 .