Skip to content

Commit d89a521

Browse files
committed
fix(ci): re-enable docker-compose integration test triggers
Restore pull_request and push triggers for the Integration Test [Docker Compose] workflow that were removed in commit 0e3a669. The workflow now runs on: - Pull requests to main (excluding website/** and **.md) - Pushes to main (excluding website/** and **.md) - Manual workflow_dispatch triggers This ensures the docker-compose integration test runs automatically for all PRs, catching issues before merge. The test now passes with the fallback logic in quickstart.sh that handles gated model failures. Signed-off-by: Senan Zedan <[email protected]>
1 parent 2e7ea2b commit d89a521

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/integration-test-docker.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
name: Integration Test [Docker Compose]
22

33
on:
4+
pull_request:
5+
branches:
6+
- main
7+
paths-ignore:
8+
- 'website/**'
9+
- '**/*.md'
10+
push:
11+
branches:
12+
- main
13+
paths-ignore:
14+
- 'website/**'
15+
- '**/*.md'
416
workflow_dispatch: # Allow manual triggering
517

618
jobs:

0 commit comments

Comments
 (0)