Skip to content

fix: increase max_iterations to 10 for triage and task-decompose #54

fix: increase max_iterations to 10 for triage and task-decompose

fix: increase max_iterations to 10 for triage and task-decompose #54

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install dependencies
run: uv sync --all-extras
- name: Lint
run: uv run ruff check src/agentry/
- name: Type check
run: uv run mypy src/agentry/ --ignore-missing-imports
continue-on-error: true
- name: Tests
run: uv run pytest tests/unit tests/integration -v --tb=short
env:
GITHUB_ACTIONS: ""