Skip to content

Bump Python >=3.10, replace requirements.txt with pyproject.toml, upd… #4

Bump Python >=3.10, replace requirements.txt with pyproject.toml, upd…

Bump Python >=3.10, replace requirements.txt with pyproject.toml, upd… #4

Workflow file for this run

name: Python tests
on:
push:
branches: ['**']
pull_request:
branches: ['**']
jobs:
test:
name: Python ${{ matrix.python }} on ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.10', '3.12', '3.13']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install
run: pip install ".[test]" -v
- name: Test
run: pytest tests/python/ -v --tb=short