This repository was archived by the owner on Jun 3, 2026. It is now read-only.
perf: move model factory imports to top level in registry #25
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # name: CI | |
| # on: | |
| # push: | |
| # branches: [main] | |
| # pull_request: | |
| # branches: [main, "feat/*"] | |
| # jobs: | |
| # test: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # - name: Set up Python 3.11 | |
| # uses: actions/setup-python@v5 | |
| # with: | |
| # python-version: "3.11" | |
| # cache: "pip" # caching pip dependencies | |
| # - name: Install dependencies | |
| # run: | | |
| # python -m pip install --upgrade pip | |
| # pip install .[dev] | |
| # - name: Run specified tests | |
| # run: | | |
| # pytest -v \ | |
| # tests/unit/utils/test_text.py | |
| # env: | |
| # PINECONE_API_KEY: "dummy_key" | |
| # NEO4J_PASSWORD: "dummy_password" | |
| # NEO4J_URI: "bolt://localhost:7687" | |
| # NEO4J_USERNAME: "neo4j" | |
| # GEMINI_API_KEY: "dummy_gemini" | |
| # CLAUDE_API_KEY: "dummy_claude" | |
| # OPENAI_API_KEY: "dummy_openai" |