Skip to content

fix(executor): harden cancel flow and adopt typed stream part routing #19

fix(executor): harden cancel flow and adopt typed stream part routing

fix(executor): harden cancel flow and adopt typed stream part routing #19

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
quality-gate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Setup uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Sync Dependencies
run: uv sync --all-extras --frozen
- name: Run pre-commit
run: uv run pre-commit run --all-files
- name: Run pytest
run: uv run pytest