88
99jobs :
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 }}
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
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