Skip to content

Update ruff requirement from <0.4,>=0.2 to >=0.2,<0.5 #20

Update ruff requirement from <0.4,>=0.2 to >=0.2,<0.5

Update ruff requirement from <0.4,>=0.2 to >=0.2,<0.5 #20

Workflow file for this run

name: Test
on:
pull_request:
push:
branches: [ master ]
jobs:
test:
strategy:
matrix:
platform: [ ubuntu-latest, macos-latest, windows-latest ]
python: [ '3.10', '3.11', '3.12' ]
runs-on: ${{ matrix.platform }}
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
-
name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
-
name: Run tests with tox
run: tox