Skip to content

Promote internal LLM/session helpers to explicit public API; remove underscore re-exports from __init__.py #17

Promote internal LLM/session helpers to explicit public API; remove underscore re-exports from __init__.py

Promote internal LLM/session helpers to explicit public API; remove underscore re-exports from __init__.py #17

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
test-and-typecheck:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run mypy
run: mypy novelforge app.py
- name: Run tests
run: pytest --tb=short -q