Skip to content

Move TODO into docs/, ignore plan.md, trim CHANGELOG #4

Move TODO into docs/, ignore plan.md, trim CHANGELOG

Move TODO into docs/, ignore plan.md, trim CHANGELOG #4

Workflow file for this run

name: test
on:
push:
branches: [main, dev]
pull_request:
jobs:
pytest:
name: pytest (py${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install (with dev extras)
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Run tests
run: python -m pytest -q