Skip to content

Commit 1c4726b

Browse files
authoredSep 30, 2020
Merge branch 'master' into l8
2 parents 942f936 + 8211268 commit 1c4726b

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed
 

Diff for: ‎.github/workflows/build-ci.yml

+13-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,20 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ${{matrix.os}}
11+
runs-on: ${{ matrix.os }}
12+
name: PHP v${{ matrix.php }} with Mongo v${{ matrix.mongodb }}
13+
continue-on-error: ${{ matrix.experimental }}
1214
strategy:
1315
matrix:
14-
php: ['7.3', '7.4']
15-
os: ['ubuntu-latest']
16-
mongodb: ['3.6', '4.0', '4.2', '4.4']
16+
include:
17+
- { os: ubuntu-latest, php: 7.3, mongodb: 3.6, experimental: false}
18+
- { os: ubuntu-latest, php: 7.3, mongodb: '4.0', experimental: false}
19+
- { os: ubuntu-latest, php: 7.3, mongodb: 4.2, experimental: false}
20+
- { os: ubuntu-latest, php: 7.3, mongodb: 4.4, experimental: false}
21+
- { os: ubuntu-latest, php: 7.4, mongodb: 3.6, experimental: false}
22+
- { os: ubuntu-latest, php: 7.4, mongodb: '4.0', experimental: false}
23+
- { os: ubuntu-latest, php: 7.4, mongodb: 4.2, experimental: false}
24+
- { os: ubuntu-latest, php: 7.4, mongodb: 4.4, experimental: false}
1725
services:
1826
mongo:
1927
image: mongo:${{ matrix.mongodb }}
@@ -27,7 +35,6 @@ jobs:
2735
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
2836
MYSQL_DATABASE: 'unittest'
2937
MYSQL_ROOT_PASSWORD:
30-
name: PHP v${{ matrix.php }} with Mongo v${{ matrix.mongodb }}
3138

3239
steps:
3340
- uses: actions/checkout@v2
@@ -66,4 +73,4 @@ jobs:
6673
- uses: codecov/codecov-action@v1
6774
with:
6875
token: ${{ secrets.CODECOV_TOKEN }}
69-
fail_ci_if_error: false
76+
fail_ci_if_error: false

0 commit comments

Comments
 (0)