We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3841fb0 + 4d0fda9 commit 16284a4Copy full SHA for 16284a4
.github/workflows/tests.yml
@@ -15,6 +15,14 @@ jobs:
15
# Will still run for each push to bump-meilisearch-v*
16
if: github.event_name != 'pull_request' || !startsWith(github.base_ref, 'bump-meilisearch-v')
17
runs-on: ubuntu-latest
18
+ services:
19
+ meilisearch:
20
+ image: getmeili/meilisearch:latest
21
+ ports:
22
+ - 7700:7700
23
+ env:
24
+ MEILI_MASTER_KEY: masterKey
25
+ MEILI_NO_ANALYTICS: true
26
strategy:
27
matrix:
28
php-version: ['7.4', '8.0', '8.1', '8.2']
@@ -50,8 +58,6 @@ jobs:
50
58
if: matrix.php-version != '7.4'
51
59
run: |
52
60
composer remove --dev doctrine/annotations
53
- - name: Meilisearch setup with Docker
54
- run: docker run -d -p 7700:7700 getmeili/meilisearch:latest meilisearch --master-key=masterKey --no-analytics
55
61
- name: Run test suite
56
62
run: composer test:unit
57
63
0 commit comments