Skip to content

Merge pull request #266 from nexpy/dependabot/github_actions/actions/… #380

Merge pull request #266 from nexpy/dependabot/github_actions/actions/…

Merge pull request #266 from nexpy/dependabot/github_actions/actions/… #380

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@v7
- 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@v7
- uses: astral-sh/setup-uv@v7
- name: Run tests
run: uv run --python ${{ matrix.python }} pytest