Skip to content

rel: increase version #13

rel: increase version

rel: increase version #13

Workflow file for this run

name: tests
on:
pull_request:
push:
jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest, "macos-latest", "windows-latest"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e .
pip install pytest
- name: Test with pytest
run: |
pytest