Skip to content

Bump astral-sh/setup-uv from 4 to 5 #266

Bump astral-sh/setup-uv from 4 to 5

Bump astral-sh/setup-uv from 4 to 5 #266

Workflow file for this run

name: Run Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
testing:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the dependencies
run: uv sync --all-extras --dev
- name: Run Pytest
run: |
uv run pytest