@@ -11,7 +11,6 @@ name: CI
11
11
env :
12
12
COMPOSER_ROOT_VERSION : " 8.5.x-dev"
13
13
PHP_VERSION : 8.4
14
- UNSTABLE_PHP_VERSION : 8.5
15
14
16
15
permissions :
17
16
contents : read
@@ -142,13 +141,7 @@ jobs:
142
141
- name : Install dependencies with Composer
143
142
run : php ./tools/composer install --no-ansi --no-interaction --no-progress
144
143
145
- - name : Run tests with PHPUnit using stable PHP version
146
- if : matrix.php-version != ${{ env.UNSTABLE_PHP_VERSION }}
147
- run : php ./phpunit --testsuite unit
148
-
149
- - name : Run tests with PHPUnit using unstable PHP version
150
- if : matrix.php-version == ${{ env.UNSTABLE_PHP_VERSION }}
151
- continue-on-error : true
144
+ - name : Run tests with PHPUnit
152
145
run : php ./phpunit --testsuite unit
153
146
154
147
end-to-end-tests :
@@ -200,13 +193,7 @@ jobs:
200
193
- name : Install dependencies with Composer
201
194
run : php ./tools/composer install --no-ansi --no-interaction --no-progress
202
195
203
- - name : Run tests with PHPUnit using stable PHP version
204
- if : matrix.php-version != ${{ env.UNSTABLE_PHP_VERSION }}
205
- run : php ./phpunit --testsuite end-to-end
206
-
207
- - name : Run tests with PHPUnit using unstable PHP version
208
- if : matrix.php-version == ${{ env.UNSTABLE_PHP_VERSION }}
209
- continue-on-error : true
196
+ - name : Run tests with PHPUnit
210
197
run : php ./phpunit --testsuite end-to-end
211
198
212
199
code-coverage :
0 commit comments