@@ -88,15 +88,15 @@ jobs:
88
88
# - custom_ini: Whether to run with specific custom ini settings to hit very specific
89
89
# code conditions.
90
90
matrix :
91
- php : ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
91
+ php : ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
92
92
custom_ini : [false]
93
93
94
94
include :
95
- # Skip test runs on builds which are also run for in the coverage job.
96
- # Note: the tests on PHP 7.2 will still be run as the coverage build is uses custom_ini for that version.
95
+ # Skip test runs on builds which are also run in the coverage job.
96
+ # Note: the tests on PHP 7.2 will still be run as the coverage build uses custom_ini settings for that version.
97
97
- php : ' 5.4'
98
98
skip_tests : true
99
- - php : ' 8.3 '
99
+ - php : ' 8.4 '
100
100
skip_tests : true
101
101
102
102
# Extra builds running only the unit tests with different PHP ini settings.
@@ -107,7 +107,7 @@ jobs:
107
107
108
108
name : " PHP: ${{ matrix.php }} ${{ matrix.custom_ini && ' with custom ini settings' || '' }}"
109
109
110
- continue-on-error : ${{ matrix.php == '8.4 ' }}
110
+ continue-on-error : ${{ matrix.php == '8.5 ' }}
111
111
112
112
steps :
113
113
- name : Checkout code
@@ -154,7 +154,7 @@ jobs:
154
154
- name : Install Composer dependencies
155
155
uses : " ramsey/composer-install@v3"
156
156
with :
157
- composer-options : ${{ matrix.php == '8.4 ' && '--ignore-platform-req=php' || '' }}
157
+ composer-options : ${{ matrix.php == '8.5 ' && '--ignore-platform-req=php' || '' }}
158
158
custom-cache-suffix : $(date -u "+%Y-%m")
159
159
160
160
# Note: The code style check is run multiple times against every PHP version
@@ -200,7 +200,7 @@ jobs:
200
200
custom_ini : false
201
201
- php : ' 7.2'
202
202
custom_ini : true
203
- - php : ' 8.3 '
203
+ - php : ' 8.4 '
204
204
custom_ini : false
205
205
206
206
name : " Coverage: ${{ matrix.php }} ${{ matrix.custom_ini && ' with custom ini settings' || '' }}"
0 commit comments