Skip to content

Bump astral-sh/setup-uv from 9.0.0 to 10.0.0 #10

Bump astral-sh/setup-uv from 9.0.0 to 10.0.0

Bump astral-sh/setup-uv from 9.0.0 to 10.0.0 #10

Workflow file for this run

name: Tests
on:
push:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v10.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras
- name: Run offline tests
run: uv run pytest