We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4a7f5c1 + 31ee326 commit 1375cddCopy full SHA for 1375cdd
.github/workflows/build-ci.yml
@@ -11,7 +11,7 @@ jobs:
11
runs-on: ${{matrix.os}}
12
strategy:
13
matrix:
14
- php: ['7.1', '7.2', '7.3', '7.4']
+ php: ['7.2', '7.3', '7.4']
15
os: ['ubuntu-latest']
16
mongodb: ['3.6', '4.0', '4.2']
17
services:
@@ -30,9 +30,16 @@ jobs:
30
name: PHP v${{ matrix.php }} with Mongo v${{ matrix.mongodb }}
31
32
steps:
33
- - uses: actions/checkout@v1
+ - 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
41
- name: Show PHP version
- run: php${{ matrix.php }} -v && composer -V
42
+ run: php -v && composer -V
43
- name: Show Docker version
44
run: if [[ "$DEBUG" == "true" ]]; then docker version && env; fi
45
env:
0 commit comments