Skip to content

Explicit Path and str additional context in Session (#72) #49

Explicit Path and str additional context in Session (#72)

Explicit Path and str additional context in Session (#72) #49

Workflow file for this run

name: pytest
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: ".python-version"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.9.5"
enable-cache: true
- 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