8
8
9
9
jobs :
10
10
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 }}
12
14
strategy :
13
15
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}
17
25
services :
18
26
mongo :
19
27
image : mongo:${{ matrix.mongodb }}
27
35
MYSQL_ALLOW_EMPTY_PASSWORD : ' yes'
28
36
MYSQL_DATABASE : ' unittest'
29
37
MYSQL_ROOT_PASSWORD :
30
- name : PHP v${{ matrix.php }} with Mongo v${{ matrix.mongodb }}
31
38
32
39
steps :
33
40
- uses : actions/checkout@v2
66
73
- uses : codecov/codecov-action@v1
67
74
with :
68
75
token : ${{ secrets.CODECOV_TOKEN }}
69
- fail_ci_if_error : false
76
+ fail_ci_if_error : false
0 commit comments