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 11
11
runs-on : ${{matrix.os}}
12
12
strategy :
13
13
matrix :
14
- php : ['7.1', '7. 2', '7.3', '7.4']
14
+ php : ['7.2', '7.3', '7.4']
15
15
os : ['ubuntu-latest']
16
16
mongodb : ['3.6', '4.0', '4.2']
17
17
services :
30
30
name : PHP v${{ matrix.php }} with Mongo v${{ matrix.mongodb }}
31
31
32
32
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
34
41
- name : Show PHP version
35
- run : php${{ matrix.php }} -v && composer -V
42
+ run : php -v && composer -V
36
43
- name : Show Docker version
37
44
run : if [[ "$DEBUG" == "true" ]]; then docker version && env; fi
38
45
env :
You can’t perform that action at this time.
0 commit comments