Skip to content

bump version to 0.5.2 #148

bump version to 0.5.2

bump version to 0.5.2 #148

Workflow file for this run

name: Tests
on: [push, pull_request, workflow_call, workflow_dispatch]
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: ☑️ Test with coverage
run: uv run --all-extras pytest --cov-report xml
- name: ☂️ Upload coverage to Coveralls
uses: coverallsapp/github-action@v2