Skip to content

Bump version: 1.9.3 → 2.0.0 #105

Bump version: 1.9.3 → 2.0.0

Bump version: 1.9.3 → 2.0.0 #105

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.11", "3.14"]
steps:
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v10.0.1
with:
python-version: ${{ matrix.python-version }}
- name: Run pytest tests
run: |
uv venv
uv pip install -e . pytest
sudo $(which uv) run pytest tests