feat(live): add @pipeline decorator for simplified pipeline creation #1819
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: 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 |