Skip to content

mypy?

mypy? #214

Workflow file for this run

name: Compatibility
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
env:
UV_SYSTEM_PYTHON: 1
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Setup UV
run: |
pip install --upgrade pip
pip install uv
- name: Install requirements
run: uv pip install .[test] --index-strategy unsafe-best-match --extra-index-url https://download.pytorch.org/whl/cpu
- name: Test with pytest
run: pytest tests -vv