Skip to content

Update ruff requirement from <0.16.0,>=0.15.20 to >=0.15.20,<0.17.0 #8

Update ruff requirement from <0.16.0,>=0.15.20 to >=0.15.20,<0.17.0

Update ruff requirement from <0.16.0,>=0.15.20 to >=0.15.20,<0.17.0 #8

Workflow file for this run

name: Tests
on:
push:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v8.3.2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras
- name: Run offline tests
run: uv run pytest