Skip to content

feat: migrate from poetry to uv (#11) #8

feat: migrate from poetry to uv (#11)

feat: migrate from poetry to uv (#11) #8

Workflow file for this run

name: ci
on: [ push, pull_request ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", 3.11, 3.12, 3.13]
steps:
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Run CI
run: uv run make ci