Skip to content

UV

UV #126

Workflow file for this run

name: CI
on:
push:
pull_request:
types: [opened, reopened, synchronize]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.14"
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- run: uv tool install tox --with tox-uv-bare --with tox-gh
- run: tox -e fix
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- run: uv tool install tox --with tox-uv-bare --with tox-gh
- run: tox