feat(deploy): implement lib_ownership, registry merge, and deployment test suite
This commit is contained in:
@@ -33,6 +33,8 @@ jobs:
|
||||
shellcheck .agents/skills/multi-agent-mux-stop/scripts/stop_session.sh
|
||||
shellcheck .agents/skills/multi-agent-mux-monitor/scripts/reconcile.sh
|
||||
shellcheck .agents/skills/multi-agent-mux-loop/scripts/run_loop.sh
|
||||
shellcheck .agents/hooks/loop_delegation_guard.sh
|
||||
shellcheck deploy/lib_ownership.sh
|
||||
shellcheck deploy/install.sh
|
||||
shellcheck deploy/install_mam.sh
|
||||
shellcheck deploy/generate-env.sh
|
||||
@@ -73,3 +75,34 @@ jobs:
|
||||
echo "🔍 Verifying Python file compilation..."
|
||||
python -m py_compile .agents/skills/multi-agent-mux-delegate-job/scripts/*.py
|
||||
echo "✅ All Python files compiled successfully."
|
||||
|
||||
test:
|
||||
name: Run Test Suite
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.10'
|
||||
cache: 'pip'
|
||||
|
||||
- name: Install Test Dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
if [ -f requirements-dev.txt ]; then
|
||||
pip install -r requirements-dev.txt
|
||||
else
|
||||
pip install pytest
|
||||
fi
|
||||
if [ -f .agents/skills/multi-agent-mux-delegate-job/requirements.txt ]; then
|
||||
pip install -r .agents/skills/multi-agent-mux-delegate-job/requirements.txt
|
||||
fi
|
||||
|
||||
- name: Run Pytest
|
||||
run: |
|
||||
echo "🧪 Running full test suite..."
|
||||
pytest tests/ -q
|
||||
|
||||
|
||||
Reference in New Issue
Block a user