Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/meilisearch-beta-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
env:
MEILI_MASTER_KEY: masterKey
MEILI_NO_ANALYTICS: true
MEILI_EXPERIMENTAL_ALLOWED_IP_NETWORKS: any
strategy:
matrix:
php-version: ["8.1", "8.2", "8.3", "8.4", "8.5"]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pre-release-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
env:
MEILI_MASTER_KEY: masterKey
MEILI_NO_ANALYTICS: true
MEILI_EXPERIMENTAL_ALLOWED_IP_NETWORKS: any
strategy:
matrix:
php-version: ["8.1", "8.2", "8.3", "8.4", "8.5"]
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,14 @@ jobs:
meilisearch:
image: getmeili/meilisearch-enterprise:latest
ports:
- '7700:7700'
- "7700:7700"
env:
MEILI_MASTER_KEY: masterKey
MEILI_NO_ANALYTICS: true
MEILI_EXPERIMENTAL_ALLOWED_IP_NETWORKS: any
strategy:
matrix:
php-version: ['8.1', '8.2', '8.3', '8.4', '8.5']
php-version: ["8.1", "8.2", "8.3", "8.4", "8.5"]

steps:
- uses: actions/checkout@v6
Expand All @@ -98,8 +99,8 @@ jobs:
- name: Upload coverage file
uses: actions/upload-artifact@v6
with:
name: 'phpunit-${{ matrix.php-version }}-coverage'
path: 'coverage*.xml'
name: "phpunit-${{ matrix.php-version }}-coverage"
path: "coverage*.xml"

upload-coverage:
name: Upload coverage to Codecov
Expand Down
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ services:
- ./:/home/package

meilisearch:
image: getmeili/meilisearch-enterprise:v1.30.0
image: getmeili/meilisearch-enterprise:v1.35.0
ports:
- "7700"
environment:
- MEILI_MASTER_KEY=masterKey
- MEILI_NO_ANALYTICS=true
- MEILI_EXPERIMENTAL_ALLOWED_IP_NETWORKS=any