Skip to content

Bump ruff from 0.15.4 to 0.15.5 #24

Bump ruff from 0.15.4 to 0.15.5

Bump ruff from 0.15.4 to 0.15.5 #24

Workflow file for this run

name: Tests
permissions:
contents: read
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Run tests
run: uv run --extra dev pytest tests/ -v