Skip to content

chore: update dependency versions in pyproject.toml #27

chore: update dependency versions in pyproject.toml

chore: update dependency versions in pyproject.toml #27

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main]
jobs:
test:
name: Test — Python ${{ matrix.python }} on ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python: ["3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: pip
- name: Install package + dev deps
run: pip install -e ".[dev]"
- name: Run tests
run: pytest --tb=short -q
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install ruff
run: pip install ruff
- name: Ruff check
run: ruff check src/
- name: Ruff format check
run: ruff format --check src/