Skip to content

Commit 66002c5

Browse files
no message
1 parent dc49c80 commit 66002c5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2
8686
with:
8787
php-version: ${{ matrix.php }}
88-
coverage: ${{ matrix.calculate-code-coverage && 'xdebug' || 'none' }}
88+
coverage: ${{ matrix.calculate-code-coverage == true && 'xdebug' || 'none' }}
8989
extensions: ctype, json, mbstring, pdo_pgsql
9090
tools: composer
9191

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2
6868
with:
6969
php-version: ${{ matrix.php }}
70-
coverage: ${{ matrix.calculate-code-coverage && 'xdebug' || 'none' }}
70+
coverage: ${{ matrix.calculate-code-coverage == true && 'xdebug' || 'none' }}
7171
extensions: ctype, json, mbstring
7272
tools: composer
7373

0 commit comments

Comments
 (0)