File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 15
15
# Will still run for each push to bump-meilisearch-v*
16
16
if : github.event_name != 'pull_request' || !startsWith(github.base_ref, 'bump-meilisearch-v')
17
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
18
26
strategy :
19
27
matrix :
20
28
php-version : ['7.4', '8.0', '8.1', '8.2']
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
You can’t perform that action at this time.
0 commit comments