Skip to content

Bump https://github.com/astral-sh/ruff-pre-commit from v0.15.12 to 0.16.2 #1571

Bump https://github.com/astral-sh/ruff-pre-commit from v0.15.12 to 0.16.2

Bump https://github.com/astral-sh/ruff-pre-commit from v0.15.12 to 0.16.2 #1571

Workflow file for this run

name: testing
on:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --dev
- name: Test with pytest
run: uv run pytest