docs: rename Agent Registry → AgentLedger (#9) #38
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: Global Manifest Validation | |
| on: [push, pull_request] | |
| jobs: | |
| check-json: | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Install validator | |
| run: pip install jsonschema | |
| - name: Run validation | |
| run: | | |
| for file in examples/*.json; do | |
| echo "Checking $file..." | |
| python validate_manifest.py "$file" | |
| done |