Skip to content

Bump magnify version to 0.12.5. #174

Bump magnify version to 0.12.5.

Bump magnify version to 0.12.5. #174

Workflow file for this run

name: push
on: [ push, pull_request ]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v3
with:
args: check
- uses: astral-sh/ruff-action@v3
with:
args: 'format --check'
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Setup Python and uv.
uses: astral-sh/setup-uv@v5
with:
python-version: ${{matrix.python-version}}
- name: Run tests
run: uv run --dev pytest tests