Skip to content

[paper] Re-examining EDEN's Optimal-S Critique of TurboQuant #301

[paper] Re-examining EDEN's Optimal-S Critique of TurboQuant

[paper] Re-examining EDEN's Optimal-S Critique of TurboQuant #301

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip packages
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install pytest-cov
python3 -m pip install -e ".[dev]"
- name: Run tests with coverage
run: python3 -m pytest tests/ -v --tb=short --cov=turboquant --cov-fail-under=95