Skip to content

Bump astral-sh/setup-uv from 4 to 5 in the dependencies group #10

Bump astral-sh/setup-uv from 4 to 5 in the dependencies group

Bump astral-sh/setup-uv from 4 to 5 in the dependencies group #10

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
strategy:
fail-fast: true
matrix:
python-version: ["3.12", "3.13"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: |
uv run ruff check --fix .
uv run ruff format --check .
uv sync
uv build
uv run pytest tests/