Skip to content

Merge branch 'main' into python-3.13 #253

Merge branch 'main' into python-3.13

Merge branch 'main' into python-3.13 #253

Workflow file for this run

name: Python Testing
on: [push]
jobs:
pytest:
strategy:
matrix:
python-version: ["3.9", "3.13"]
os: ["ubuntu-latest", "windows-latest"]
runs-on: ${{ matrix.os}}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install -e .[dev]
- name: Unit tests
run: |
python -m pytest -v