Skip to content

docs: upgrade READMEs — add "Why Antigravity?" section, Knowledge Hub… #79

docs: upgrade READMEs — add "Why Antigravity?" section, Knowledge Hub…

docs: upgrade READMEs — add "Why Antigravity?" section, Knowledge Hub… #79

Workflow file for this run

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