Skip to content

Migrate from poetry to uv #89

Migrate from poetry to uv

Migrate from poetry to uv #89

Workflow file for this run

name: Run test suite
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 60
name: "Python ${{ matrix.python-version }}"
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout Repo
uses: actions/checkout@v5
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v6
with:
version: "latest"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv sync --locked --all-extras --dev
- name: Install redis
run: |
sudo apt-get install redis -y
- name: Run tests
run: uv run pytest -vv