File tree 1 file changed +1
-11
lines changed
1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 99
99
coverage : false
100
100
experimental : true
101
101
102
- - php : ' 8.3'
103
- phpunit : ' dev-main' # PHPUnit 11.x
104
- coverage : false
105
- experimental : true
106
-
107
102
name : " Tests: PHP ${{ matrix.php }} - PHPUnit: ${{matrix.phpunit}}"
108
103
109
104
continue-on-error : ${{ matrix.experimental }}
@@ -162,10 +157,7 @@ jobs:
162
157
- name : Determine PHPUnit config
163
158
id : phpunit_config
164
159
run : |
165
- if [ "${{ matrix.phpunit == 'dev-main' }}" == "true" ]; then
166
- echo 'FILE=phpunit10.xml.dist' >> $GITHUB_OUTPUT
167
- echo 'NEEDS_MIGRATION=true' >> $GITHUB_OUTPUT
168
- elif [ "${{ steps.phpunit_version.outputs.VERSION }}" == "10.0" ]; then
160
+ if [ "${{ steps.phpunit_version.outputs.VERSION }}" == "10.0" ]; then
169
161
echo 'FILE=phpunit10.xml.dist' >> $GITHUB_OUTPUT
170
162
elif [ "${{ startsWith( steps.phpunit_version.outputs.VERSION, '10.' ) }}" == "true" ]; then
171
163
echo 'FILE=phpunit10.xml.dist' >> $GITHUB_OUTPUT
@@ -182,8 +174,6 @@ jobs:
182
174
run : vendor/bin/phpunit -c ${{ steps.phpunit_config.outputs.FILE }} --migrate-configuration
183
175
184
176
- name : " Run the unit tests"
185
- # Don't fail the build on a test run failure against a future PHPUnit version.
186
- continue-on-error : ${{ matrix.phpunit == 'dev-main' }}
187
177
run : >
188
178
vendor/bin/phpunit -c ${{ steps.phpunit_config.outputs.FILE }}
189
179
${{ ! matrix.coverage && '--no-coverage' || '' }}
You can’t perform that action at this time.
0 commit comments