Skip to content

chore(deps): update anthropic requirement from ~=0.44.0 to ~=0.45.0 #891

chore(deps): update anthropic requirement from ~=0.44.0 to ~=0.45.0

chore(deps): update anthropic requirement from ~=0.44.0 to ~=0.45.0 #891

Workflow file for this run

name: Formatting and Type Checks
on: ["push", "pull_request"]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
enable-cache: true
cache-dependency-glob: pyproject.toml
- name: Install dependencies
run: |
uv export --no-hashes | uv pip install -r - basedpyright
- name: Check formatting
run: |
isort . --check --diff
- name: Check imports order
run: |
black . --check --diff
- name: Check typing
run: |
basedpyright