Skip to content

Add final line breaks #5

Add final line breaks

Add final line breaks #5

Workflow file for this run

name: Test
on: [push]
jobs:
build:
name: Run pytest
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
version: "0.5.29"
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest
- name: Minimize uv cache
run: uv cache prune --ci