Skip to content

Configure ruff and UV #152

Configure ruff and UV

Configure ruff and UV #152

Workflow file for this run

on:
pull_request:
branches: [main, master]
push:
branches: [main, master]
name: package-build
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: pyproject.toml
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
shell: bash
run: |
uv tool install tox --with tox-uv
tox --version
- name: Test install with tox
run: |
env=$(echo ${{ matrix.python-version }} | tr -d '.' | sed 's/^/py/')
tox r -v --notest -e "$env"