Skip to content

Per-parameter Learning Rate (PPLR) Implementation, Tensor Decomposition Models, and Tomography Updates #607

Per-parameter Learning Rate (PPLR) Implementation, Tensor Decomposition Models, and Tomography Updates

Per-parameter Learning Rate (PPLR) Implementation, Tensor Decomposition Models, and Tomography Updates #607

Workflow file for this run

name: PyTests
on:
pull_request:
workflow_dispatch:
jobs:
uv-pytests:
name: ${{ matrix.os }} / python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Test other OSs main branch PRs
os: ${{ github.base_ref == 'main' && fromJSON('["ubuntu-latest", "windows-latest", "macos-latest"]') || fromJSON('["ubuntu-latest"]') }}
python-version:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v6
- name: Install uv and set python version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --locked --group test
- name: Run pytests
run: uv run pytest tests