Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,18 @@ jobs:
- name: zig fmt --check
run: zig fmt --check src/main.zig src/mcp.zig build.zig

- name: Zig source size guard
run: bash scripts/check-zig-lines.sh

- name: zig build test
run: zig build test --summary all

- name: JSON live-control protocol test
run: python3 scripts/test-json-controls.py zig-out/bin/graff

- name: Live JSON stream contains no raw stdout lines
run: python3 scripts/test-json-live.py zig-out/bin/graff

- name: PTY spinner anti-stealth test
run: python3 scripts/test-pty-spinner.py zig-out/bin/graff

Expand All @@ -60,6 +66,12 @@ jobs:
- name: PTY model preference and fallback test
run: python3 scripts/test-model-preference.py zig-out/bin/graff

- name: Codex WS/SSE transport and mid-turn compaction test
run: python3 scripts/test-pty-codex-ws.py zig-out/bin/graff

- name: AI title and first turn run in parallel
run: python3 scripts/test-title-parallel.py zig-out/bin/graff

- name: Stream stall/drop is not a user Esc (#134/#132)
run: python3 scripts/test-stall-drop.py zig-out/bin/graff

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ __pycache__/
.wrangler/

# local agent/IDE config (not project source)
.codex/
.devin/

# release artifacts
Expand Down
Loading
Loading