Skip to content

feat: Python version constraints, GpuType migration, idle_timeout fixes #147

feat: Python version constraints, GpuType migration, idle_timeout fixes

feat: Python version constraints, GpuType migration, idle_timeout fixes #147

Workflow file for this run

name: Test Examples
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
name: Test on Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- name: Install dependencies
run: make setup
- name: Display environment info
run: make venv-info
- name: Run quality checks
run: make quality-check