Skip to content

Fixes: create_factory() overload signature, extra code copies from … #12

Fixes: create_factory() overload signature, extra code copies from …

Fixes: create_factory() overload signature, extra code copies from … #12

Workflow file for this run

name: pytest
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y libsuitesparse-dev
pip install uv
uv pip install --system -e ".[dev,examples]"
- name: Test with pytest
run: |
pytest