Skip to content

chore: bump version to 0.5.1 #41

chore: bump version to 0.5.1

chore: bump version to 0.5.1 #41

Workflow file for this run

name: Tests
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra test
- name: Run tests
run: uv run pytest -v
timeout-minutes: 10