Skip to content

Release 0.12.11

Release 0.12.11 #242

Workflow file for this run

name: Run pytests
on:
push:
branches: [dev]
pull_request:
branches: [master, dev]
workflow_dispatch:
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10", "3.14"]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install package with test dependencies
run: python -m pip install ".[test]"
- name: Run pytest tests
run: pytest tests