Delete OPEN_AGENTIC_ROOT_TESTS.md #68
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: CI | |
| on: | |
| push: | |
| branches: [ main, master ] | |
| pull_request: | |
| branches: [ main, master ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install deps (optional PyYAML) | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pyyaml pytest | |
| - name: Run tests | |
| run: | | |
| python -m pytest -q -vv | |
| - name: List key IDs (informational) | |
| run: | | |
| python tools/list_key_ids.py || true | |
| - name: Upload audit artifacts | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: audits-and-bundles | |
| path: | | |
| audit_*.jsonl | |
| bundle_*.json | |