mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
Add a Docker-based end-to-end harness that validates Headroom's Codex, Aider, Cursor, and OpenClaw wrap flows without calling real model providers. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
22 lines
423 B
YAML
22 lines
423 B
YAML
name: Wrap E2E
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
push:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
docker-wrap-e2e:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 45
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Build wrap e2e image
|
|
run: docker build -f e2e/wrap/Dockerfile -t headroom-wrap-e2e .
|
|
|
|
- name: Run wrap e2e container
|
|
run: docker run --rm headroom-wrap-e2e
|