Skip to content

Release 0.9.1

Release 0.9.1 #80

Workflow file for this run

name: Run pytests
on:
push:
branches: [master, dev]
pull_request:
branches: [master]
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10", "3.14"]
os: [ubuntu-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: pip install ".[test]"
- name: Run pytest tests
run: pytest tests