Skip to content

Replace poetry with uv and fixed Litestar DeprecationWarning #176

Replace poetry with uv and fixed Litestar DeprecationWarning

Replace poetry with uv and fixed Litestar DeprecationWarning #176

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v5
name: Check out repository
- name: Install the latest version of uv
uses: astral-sh/[email protected]
with:
enable-cache: true
cache-dependency-glob: "pyproject.toml"
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group=dev --all-extras
- name: Run tests
run: |
./scripts/tests