We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ff40ab commit 96a0537Copy full SHA for 96a0537
1 file changed
.github/workflows/run-tests.yml
@@ -8,7 +8,7 @@ jobs:
8
runs-on: ${{ matrix.os }}
9
services:
10
opensearch:
11
- image: opensearchproject/opensearch:2.13.0
+ image: opensearchproject/opensearch:${{ matrix.opensearch }}
12
env:
13
discovery.type: single-node
14
DISABLE_SECURITY_PLUGIN: true
@@ -20,6 +20,7 @@ jobs:
20
fail-fast: true
21
matrix:
22
os: [ubuntu-latest]
23
+ opensearch: [2.19.3]
24
php: [8.4, 8.3, 8.2]
25
include:
26
- php: 8.4
@@ -34,7 +35,7 @@ jobs:
34
35
laravel: 11.*
36
testbench: 9.*
37
- name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
38
+ name: P${{ matrix.php }} - L${{ matrix.laravel }} - OS${{ matrix.opensearch }} - ${{ matrix.os }}
39
40
steps:
41
- name: Checkout code
0 commit comments