This repository was archived by the owner on Aug 13, 2026. It is now read-only.
fix(process): use process group kill when SIGKILL fails to terminate child #1822
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Run AI Runner Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "runner/**" | |
| pull_request: | |
| paths: | |
| - "runner/**" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| version: "0.9.9" | |
| - name: Install dependencies | |
| working-directory: runner | |
| run: | | |
| uv python install 3.11 | |
| uv sync --locked --extra batch --extra dev | |
| - name: Run tests | |
| working-directory: runner | |
| run: uv run pytest --verbose --showlocals |