docs: upgrade READMEs — add "Why Antigravity?" section, Knowledge Hub… #79
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: Agent CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| cd engine && pip install ".[dev]" | |
| - name: Run Tests | |
| run: | | |
| cd engine && pytest tests/ | |
| docker-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Validate docker-compose config | |
| run: docker compose config --quiet | |
| - name: Build main Dockerfile | |
| run: docker build -t ag-ci-test . | |
| - name: Build sandbox Dockerfile | |
| run: docker build -f Dockerfile.sandbox -t ag-sandbox-ci-test . | |
| cli-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.12" | |
| - name: Install CLI | |
| run: | | |
| python -m pip install --upgrade pip | |
| cd cli && pip install . | |
| - name: Verify CLI | |
| run: ag version |