Skip to content

Commit cd18616

Browse files
committed
Fix disable phpunit on PHP 8.0 run because fail
1 parent b0dfd5c commit cd18616

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
php-version: ${{ matrix.php-version }}
4444
extensions: ${{ env.extensions }}
45-
ini-values: date.timezone='UTC', display_errors=On
45+
ini-values: date.timezone='UTC'
4646
coverage: pcov
4747

4848
- name: Determine composer cache directory
@@ -70,7 +70,8 @@ jobs:
7070
if: matrix.php-version == '7.4'
7171
run: vendor/bin/psalm --no-progress
7272

73-
- name: PHPUnit run
73+
- name: PHPUnit run on PHP 7.4
74+
if: matrix.php-version == '7.4'
7475
run: vendor/bin/phpunit --coverage-clover=coverage.clover
7576

7677
- name: Code coverage on PHP 7.4

0 commit comments

Comments
 (0)