Skip to content

Move from setup.py to uv+pyproject.toml #1198

Move from setup.py to uv+pyproject.toml

Move from setup.py to uv+pyproject.toml #1198

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
pull_request: {}
defaults:
run:
shell: bash
jobs:
test:
name: Test Python ${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v3
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python }}
enable-cache: true
- name: Install dependencies
run: uv sync --locked --dev
- name: Check formatting
run: uv run ruff format --check .
- name: Lint
run: uv run ruff check --extend-exclude .devbox
- name: Type Check
run: uv run mypy
- name: Test
run: uv run pytest