Skip to content

chore: bump v0.7.3 #113

chore: bump v0.7.3

chore: bump v0.7.3 #113

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Generate PyPI README
run: python scripts/build_pypi_readme.py
- name: Install dependencies
run: uv sync --all-extras
- name: Run pytest
run: uv run pytest