Skip to content

docs: add Quality/Utility teams to landing page, update agent count t… #16

docs: add Quality/Utility teams to landing page, update agent count t…

docs: add Quality/Utility teams to landing page, update agent count t… #16

Workflow file for this run

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"