Skip to content

Commit 9bc7e4f

Browse files
Revert "Fix: Continue on error when running tests on PHP 8.3"
This reverts commit 5ba0bd8.
1 parent 985f0c3 commit 9bc7e4f

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,7 @@ jobs:
103103
- name: Install dependencies with Composer
104104
run: ./tools/composer update --no-ansi --no-interaction --no-progress
105105

106-
- name: Run tests with PHPUnit on stable PHP version
107-
if: matrix.php-version != '8.3'
108-
run: ./phpunit --testsuite unit
109-
110-
- name: Run tests with PHPUnit on unstable PHP version
111-
if: matrix.php-version == '8.3'
112-
continue-on-error: true
106+
- name: Run tests with PHPUnit
113107
run: ./phpunit --testsuite unit
114108

115109
end-to-end-tests:
@@ -159,13 +153,7 @@ jobs:
159153
- name: Install dependencies with Composer
160154
run: ./tools/composer update --no-ansi --no-interaction --no-progress
161155

162-
- name: Run tests with PHPUnit on stable PHP version
163-
if: matrix.php-version != '8.3'
164-
run: ./phpunit --testsuite end-to-end
165-
166-
- name: Run tests with PHPUnit on unstable PHP version
167-
if: matrix.php-version == '8.3'
168-
continue-on-error: true
156+
- name: Run tests with PHPUnit
169157
run: ./phpunit --testsuite end-to-end
170158

171159
code-coverage:

0 commit comments

Comments
 (0)