This repository was archived by the owner on Jun 3, 2026. It is now read-only.
feat: Release v1.7.0 - Cerebras Acceleration, Memory Bank, and Agent … #20
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: Plexir CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e . | |
| pip install pytest pytest-asyncio beautifulsoup4 requests pydantic-settings | |
| - name: Run unit tests | |
| run: | | |
| pytest tests/test_components.py tests/test_v1_2_features.py tests/test_web_v1_3.py | |
| - name: Set up Docker | |
| uses: docker-practice/actions-setup-docker@master | |
| - name: Run sandbox integration tests | |
| run: | | |
| pytest tests/test_sandbox_integration.py |