Skip to content

version [prerelease]: 0.4.4a0 #24

version [prerelease]: 0.4.4a0

version [prerelease]: 0.4.4a0 #24

Workflow file for this run

name: Tests
on:
push:
branches: [dev, main]
pull_request:
branches: [dev, main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-groups --python ${{ matrix.python-version }}
- name: Run tests with coverage
run: uv run pytest -v --cov=zotlib --cov-report=term-missing