docs: add Quality/Utility teams to landing page, update agent count t… #16
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: | |
| preflight-and-tests: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Ensure docker is available | |
| run: | | |
| docker --version | |
| if ! docker compose version >/dev/null 2>&1; then echo "Docker Compose not available"; fi | |
| - name: Run preflight checks | |
| run: | | |
| bash tests/check_executables.sh | |
| - name: Run integration tests (make test-all) | |
| run: | | |
| make test-all | |
| env: | |
| CI: "true" |