Skip to content

fixed outstanding issues contained in the latest PR #653

fixed outstanding issues contained in the latest PR

fixed outstanding issues contained in the latest PR #653

Workflow file for this run

name: PyTest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12.x", "3.13.x", "3.14.x"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
export POETRY_VIRTUALENVS_CREATE=false
poetry install --extras llm
- name: Test with pytest
run: |
pytest