Skip to content

docs: refine root and AgentHub README guidance #3

docs: refine root and AgentHub README guidance

docs: refine root and AgentHub README guidance #3

Workflow file for this run

name: python-checks
on:
push:
pull_request:
jobs:
backend-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r backend/requirements.txt
- name: Run unit tests
run: |
python -m unittest \
backend.tests.test_registry_service \
backend.tests.test_fastapi_app \
backend.tests.test_fastapi_lifecycle \
backend.tests.test_local_broker \
backend.tests.test_sidecar_app \
backend.tests.test_openclaw_plugin \
-v