We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37ecfb6 commit dc3086bCopy full SHA for dc3086b
1 file changed
.github/ci.yml
@@ -1,4 +1,4 @@
1
-
+---
2
name: CI
3
4
on:
@@ -15,10 +15,10 @@ jobs:
15
strategy:
16
fail-fast: false
17
matrix:
18
- php-version: ['5.6', '7.2', '7.4', '8.0']
+ php-version: ['5.6', '7.4', '8.0']
19
prefer-lowest: ['']
20
include:
21
- - php-version: '7.2'
+ - php-version: '5.6'
22
prefer-lowest: 'prefer-lowest'
23
24
steps:
@@ -59,7 +59,7 @@ jobs:
59
60
- name: Run PHPUnit
61
run: |
62
- if ${{ matrix.php-version == '5.6' }}; then
+ if [[ ${{ matrix.php-version }} == '5.6']]; then
63
vendor/bin/phpunit tests/php56/
64
else
65
vendor/bin/phpunit
0 commit comments