This repository was archived by the owner on Jul 5, 2026. It is now read-only.
Add multi-worker handoff example combining Flows with the worker framework #296
Workflow file for this run
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: format | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '**' | |
| paths-ignore: | |
| - 'docs/**' | |
| concurrency: | |
| group: build-format-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ruff-format: | |
| name: 'Code quality checks' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| with: | |
| version: 'latest' | |
| - name: Set up Python | |
| run: uv python install 3.11 | |
| - name: Install development dependencies | |
| run: uv sync --group dev | |
| - name: Ruff formatter | |
| id: ruff-format | |
| run: uv run ruff format --diff | |
| - name: Ruff linter (all rules) | |
| id: ruff-check | |
| run: uv run ruff check |