Skip to content

Kosst/recursion depth #267

Kosst/recursion depth

Kosst/recursion depth #267

Workflow file for this run

name: pytest
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
pytest:
name: pytest on ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.9.5"
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run pytest
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} # Real API key for integration tests
run: uv run pytest tests -v