Skip to content

Replaces: poetry -> uv #68

Replaces: poetry -> uv

Replaces: poetry -> uv #68

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.13", "3.12", "3.11", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Run tests
run: uv run pytest