docs: finish Mimir -> Mneme prose rename in remaining docs (#321) #11
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: Integrations | |
| on: | |
| push: | |
| branches: [main, master] | |
| paths: | |
| - "integrations/**" | |
| - ".github/workflows/integrations.yml" | |
| pull_request: | |
| branches: [main, master] | |
| paths: | |
| - "integrations/**" | |
| - ".github/workflows/integrations.yml" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| # autogen & crewai tests stub their framework deps — no install needed. | |
| - adapter: autogen | |
| extra_deps: "" | |
| - adapter: crewai | |
| extra_deps: "" | |
| # langgraph adapter imports langgraph.store.base at module load, | |
| # so the real package must be present to collect the tests. | |
| - adapter: langgraph | |
| extra_deps: "langgraph" | |
| # mimir-persist imports mcp.server.streamable_http at module load and | |
| # pins the SDK version (the EventStore ABC signature is version-specific). | |
| - adapter: mimir-persist | |
| extra_deps: "mcp==1.28.1" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install test deps | |
| run: pip install pytest pytest-asyncio ${{ matrix.extra_deps }} | |
| - name: Run ${{ matrix.adapter }} adapter tests | |
| working-directory: integrations/${{ matrix.adapter }} | |
| run: python -m pytest tests/ -v |