Skip to content

Merge pull request #257 from nexpy/ruff-baseline #371

Merge pull request #257 from nexpy/ruff-baseline

Merge pull request #257 from nexpy/ruff-baseline #371

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/ruff-action@v3
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
- name: Run tests
run: uv run --python ${{ matrix.python }} pytest