Skip to content

Commit 813626d

Browse files
Revert "Continue on error when running tests using unstable PHP version"
This reverts commit 0e8b04f.
1 parent 0e8b04f commit 813626d

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ name: CI
1111
env:
1212
COMPOSER_ROOT_VERSION: "8.5.x-dev"
1313
PHP_VERSION: 8.4
14-
UNSTABLE_PHP_VERSION: 8.5
1514

1615
permissions:
1716
contents: read
@@ -142,13 +141,7 @@ jobs:
142141
- name: Install dependencies with Composer
143142
run: php ./tools/composer install --no-ansi --no-interaction --no-progress
144143

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
152145
run: php ./phpunit --testsuite unit
153146

154147
end-to-end-tests:
@@ -200,13 +193,7 @@ jobs:
200193
- name: Install dependencies with Composer
201194
run: php ./tools/composer install --no-ansi --no-interaction --no-progress
202195

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
210197
run: php ./phpunit --testsuite end-to-end
211198

212199
code-coverage:

0 commit comments

Comments
 (0)