Skip to content

Shorten README citation prompt #12

Shorten README citation prompt

Shorten README citation prompt #12

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
workflow_call:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: checkout code
uses: actions/checkout@v6
- name: Install uv and Python
uses: astral-sh/setup-uv@v8.0.0
with:
python-version: "3.11"
enable-cache: true
- name: Install dependencies
run: uv sync --group dev
- name: Run tests
run: uv run -m pytest