Skip to content

bump: increment version 0.7.3 -> 0.7.4 (#107) #252

bump: increment version 0.7.3 -> 0.7.4 (#107)

bump: increment version 0.7.3 -> 0.7.4 (#107) #252

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Tests (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.13', '3.14']
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group dev
- name: Run tests
run: uv run pytest -v