Skip to content

Commit aaa9c97

Browse files
committed
feature symfony#1671 [Store][Vektor] Run Vektor integration test in pipeline (chr-hertel)
This PR was merged into the main branch. Discussion ---------- [Store][Vektor] Run Vektor integration test in pipeline | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | Docs? | no | Issues | | License | MIT Follows symfony#1561 Commits ------- 610f0c6 Run Vektor integration test in pipeline
2 parents e9153da + 610f0c6 commit aaa9c97

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ jobs:
152152
- Redis
153153
- SurrealDb
154154
- Typesense
155+
- Vektor
155156
- Weaviate
156157

157158
steps:
@@ -185,7 +186,7 @@ jobs:
185186

186187
- name: Start Docker services
187188
working-directory: tmp/store/src/Bridge/${{ matrix.bridge }}
188-
run: docker compose up -d --wait
189+
run: docker compose up -d --wait || true
189190

190191
- name: Wait for services to be ready
191192
run: sleep 15
@@ -194,9 +195,8 @@ jobs:
194195
run: cd tmp/store/src/Bridge/${{ matrix.bridge }} && vendor/bin/phpunit --group integration
195196

196197
- name: Stop Docker services
197-
if: always()
198198
working-directory: tmp/store/src/Bridge/${{ matrix.bridge }}
199-
run: docker compose down
199+
run: docker compose down || true
200200

201201
message-store-bridges:
202202
name: Unit / Message Store / ${{ matrix.bridge.bridge }} / PHP ${{ matrix.php-version }}${{ matrix.dependency-version == 'lowest' && ' / lowest' || '' }}

0 commit comments

Comments
 (0)