Skip to content

Bump ruff from 0.9.4 to 0.9.5 #149

Bump ruff from 0.9.4 to 0.9.5

Bump ruff from 0.9.4 to 0.9.5 #149

Workflow file for this run

name: PR tests
on:
pull_request:
workflow_dispatch:
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
steps:
- uses: actions/checkout@v4
- run: pipx install poetry
- run: poetry check
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- run: poetry install --all-extras
- run: poetry run pytest
continue-on-error: true