Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,26 @@ jobs:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
OLLAMA_BASE_URL: "URL_PLACEHOLDER"

test-distributed:
name: test distributed
runs-on: ubuntu-latest
strategy:
fail-fast: true

steps:
- name: Clone repo
uses: actions/checkout@v4

- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true

- name: Run tests
run: uv run pytest -m distributed -n 1
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

build-docs:
name: build docs
runs-on: ubuntu-latest
Expand Down
Loading
Loading