Skip to content

Use uv instead of poetry #509

Use uv instead of poetry

Use uv instead of poetry #509

Workflow file for this run

name: Code quality
on: [push, pull_request]
jobs:
lint:
name: 🧹 Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python 3.13
uses: actions/setup-python@v6
with:
python-version: '3.13'
- name: Install tox
run: |
python -m pip install --upgrade pip
python -m pip install tox uv tox-uv
- name: Run code quality tests with tox
run: tox
env:
TOXENV: ruff,mypy,docs