Skip to content

feat: connector initialization + Claude 4.6 compatibility (temperature + context window), v1.1.0 #138

feat: connector initialization + Claude 4.6 compatibility (temperature + context window), v1.1.0

feat: connector initialization + Claude 4.6 compatibility (temperature + context window), v1.1.0 #138

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: pip
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Ruff lint
run: ruff check .
- name: Ruff format check
run: ruff format --check .
test:
name: Tests (3.13)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: pip
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Unit tests
# Legacy issue-investigation tests (test_issue*.py) are excluded: they
# require optional extras (temporalio/deepeval) and an outdated asyncio
# loop pattern. Tracked for rehabilitation; not part of the minimal gate.
run: pytest tests/unit --ignore-glob='tests/unit/test_issue*.py' -q