Skip to content

Add uv and ruff support, remove pylint #15

Add uv and ruff support, remove pylint

Add uv and ruff support, remove pylint #15

Workflow file for this run

name: ci
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install the project
run: uv sync --all-extras --dev
- name: Check format
run: uv run ruff format --check
- name: Lint
run: uv run ruff check --output-format=github .
- name: Tests
run: uv run pytest