This repository was archived by the owner on Jun 3, 2026. It is now read-only.
feat: Release v1.8.0 - Context Management and Dependency Refactor #21
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 ".[dev]" | |
| - name: Run all tests | |
| run: | | |
| pytest tests/ | |
| - name: Set up Docker | |
| uses: docker-practice/actions-setup-docker@master | |
| - name: Run sandbox integration tests | |
| run: | | |
| pytest tests/test_sandbox_integration.py |