Skip to content

modernize configuration and packaging #45

modernize configuration and packaging

modernize configuration and packaging #45

Workflow file for this run

name: lint
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python }}
enable-cache: true
- name: Install deps
run: uv sync
- name: Run linting
run: uv run pytest