Skip to content

build: migrate from poetry to uv #217

build: migrate from poetry to uv

build: migrate from poetry to uv #217

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10"]
steps:
- uses: actions/checkout@v2
- name: Install uv
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install dependencies
run: uv sync --locked
- name: Run tests
run: uv run pytest
- name: Build wheels
run: uv build