Skip to content

fix: break delegate→plan-mode→approve infinite loop #590

fix: break delegate→plan-mode→approve infinite loop

fix: break delegate→plan-mode→approve infinite loop #590

Workflow file for this run

name: CI Tests
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
permissions:
contents: read
env:
BASH_ENV: ~/.bashrc
SHELL: /bin/bash
jobs:
test:
name: Integration Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Setup test environment
run: mkdir -p .claude/state
- name: Run linting
run: |
uvx ruff check --no-fix .
uvx ruff format --check .
- name: Run tests
run: uvx pytest tests/ -v --tb=short
env:
CI: true