File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 69
69
name : integration-tests (PHP ${{ matrix.php-version }}) (${{ matrix.http-client }})
70
70
services :
71
71
meilisearch :
72
- image : getmeili/meilisearch:latest
72
+ image : getmeili/meilisearch:v1.11.0
73
73
ports :
74
74
- ' 7700:7700'
75
75
env :
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ services:
14
14
- ./:/home/package
15
15
16
16
meilisearch :
17
- image : getmeili/meilisearch:latest
17
+ image : getmeili/meilisearch:v1.10.0
18
18
ports :
19
19
- " 7700"
20
20
environment :
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.1/phpunit.xsd"
4
+ bootstrap =" vendor/autoload.php"
5
+ convertErrorsToExceptions =" true"
6
+ convertNoticesToExceptions =" true"
7
+ convertWarningsToExceptions =" true"
8
+ stopOnFailure =" false"
9
+ cacheResult =" false"
10
+ colors =" true" >
11
+ <testsuites >
12
+ <testsuite name =" Tests" >
13
+ <directory suffix =" Test.php" >./tests</directory >
14
+ </testsuite >
15
+ </testsuites >
16
+ <coverage >
17
+ <include >
18
+ <directory >src/</directory >
19
+ </include >
20
+ </coverage >
21
+ <php >
22
+ <env name =" MEILISEARCH_URL" value =" http://localhost:7700" />
23
+ <env name =" MEILISEARCH_API_KEY" value =" masterKey" />
24
+ </php >
25
+ </phpunit >
You can’t perform that action at this time.
0 commit comments