We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 69e4da5 + fa264de commit 3e5e9deCopy full SHA for 3e5e9de
.github/workflows/build-ci.yml
@@ -13,9 +13,10 @@ jobs:
13
matrix:
14
php: [7.1, 7.2, 7.3, 7.4]
15
os: ['ubuntu-latest']
16
+ mongodb: [3.6, 4.0, 4.2]
17
services:
18
mongo:
- image: mongo
19
+ image: mongo:${{ matrix.mongodb }}
20
ports:
21
- 27017:27017
22
mysql:
@@ -26,7 +27,7 @@ jobs:
26
27
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
28
MYSQL_DATABASE: 'unittest'
29
MYSQL_ROOT_PASSWORD:
- name: PHP ${{ matrix.php }} Test ${{ matrix.env }}
30
+ name: PHP ${{ matrix.php }} with mongo ${{ matrix.mongodb }}
31
32
steps:
33
- uses: actions/checkout@v1
@@ -60,3 +61,4 @@ jobs:
60
61
run: vendor/bin/php-coveralls -v
62
env:
63
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
64
+ continue-on-error: true
0 commit comments