Skip to content

feat(live): add @pipeline decorator for simplified pipeline creation #1818

feat(live): add @pipeline decorator for simplified pipeline creation

feat(live): add @pipeline decorator for simplified pipeline creation #1818

Workflow file for this run

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