Skip to content

[pre-commit.ci] pre-commit autoupdate #402

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #402

Workflow file for this run

# This workflow will install Python dependencies abnd run tests
name: Run tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv and Python ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install the project
run: uv sync --dev
- name: Run tests
run: uv run pytest