Skip to content

ruff v0.11.2 and rules C4,PERF,UP032,UP034 #82

ruff v0.11.2 and rules C4,PERF,UP032,UP034

ruff v0.11.2 and rules C4,PERF,UP032,UP034 #82

Workflow file for this run

name: unit tests
permissions:
contents: read
on:
push:
paths-ignore:
- 'doc/**'
pull_request:
paths-ignore:
- 'doc/**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# BEHOLD, our test grid!
os: [ubuntu-24.04, windows-2025, macos-15]
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install PIP Packages
run: |
pip install -e .
pip install pytest
- name: Run tests
run: pytest test/
env:
PYTHONHASHSEED: 0