Skip to content
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

feat: Release v1.8.0 - Context Management and Dependency Refactor

feat: Release v1.8.0 - Context Management and Dependency Refactor #21

Workflow file for this run

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