Skip to content

bump: version 0.35.2 → 0.35.3 #213

bump: version 0.35.2 → 0.35.3

bump: version 0.35.2 → 0.35.3 #213

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.10.13
- 3.11.7
- 3.12
# - 3.13
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Install dependencies
run: uv sync --all-extras --dev
- run: |
uv run coverage run
uv run coverage report -m
uv run coverage xml