File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 1111 runs-on : ${{matrix.os}}
1212 strategy :
1313 matrix :
14- php : ['7.1', '7. 2', '7.3', '7.4']
14+ php : ['7.2', '7.3', '7.4']
1515 os : ['ubuntu-latest']
1616 mongodb : ['3.6', '4.0', '4.2']
1717 services :
3030 name : PHP v${{ matrix.php }} with Mongo v${{ matrix.mongodb }}
3131
3232 steps :
33- - uses : actions/checkout@v1
33+ - uses : actions/checkout@v2
34+ - name : " Installing php"
35+ uses : shivammathur/setup-php@v2
36+ with :
37+ php-version : ${{ matrix.php }}
38+ extensions : curl,mbstring,xdebug
39+ coverage : xdebug
40+ tools : composer
3441 - name : Show PHP version
35- run : php${{ matrix.php }} -v && composer -V
42+ run : php -v && composer -V
3643 - name : Show Docker version
3744 run : if [[ "$DEBUG" == "true" ]]; then docker version && env; fi
3845 env :
You can’t perform that action at this time.
0 commit comments