docs: update README/INTERNALS for import feature, harden .gitignore

This commit is contained in:
P0luz
2026-04-19 12:09:53 +08:00
parent a09fbfe13a
commit 821546d5de
27 changed files with 5365 additions and 479 deletions

37
.github/workflows/tests.yml vendored Normal file
View File

@@ -0,0 +1,37 @@
name: Tests
on:
push:
branches: [main]
paths-ignore:
- '*.md'
- 'backup_*/**'
- '.gitignore'
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest pytest-asyncio
- name: Run local tests (no API key needed)
run: python -m pytest tests/test_scoring.py tests/test_feel_flow.py -v --asyncio-mode=auto
- name: Run LLM quality tests
if: env.OMBRE_API_KEY != ''
env:
OMBRE_API_KEY: ${{ secrets.OMBRE_API_KEY }}
run: python -m pytest tests/test_llm_quality.py -v --asyncio-mode=auto