Skip to content

Initial release of SPP-Eval #1

Initial release of SPP-Eval

Initial release of SPP-Eval #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
# The suite is deliberately dependency-light: no torch, no vllm, no
# network and no API keys. Heavy runtime deps live in the container
# images (see docs/CLUSTER.md), so CI installs only the dev extra.
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint
run: ruff check .
- name: Test
run: pytest -m "not slow" -q