Skip to content

refactor: remove legacy dependencies and migrate to uv #1

refactor: remove legacy dependencies and migrate to uv

refactor: remove legacy dependencies and migrate to uv #1

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
- develop
jobs:
test:
name: Test for Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3"]
steps:
- uses: actions/checkout@v6.0.2
- name: Install uv
uses: astral-sh/setup-uv@v7.3.0
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-groups
- name: Run tests
run: uv run pytest