Skip to content

Commit a6e1617

Browse files
committed
Ensure defaults for reusable workflows inputs
1 parent 94f687b commit a6e1617

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/reusable-testing.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -375,8 +375,8 @@ jobs:
375375
secrets: inherit
376376
with:
377377
php: ${{ matrix.php }}
378-
coverage: ${{ matrix.coverage }}
379-
os: ${{ matrix.os }}
378+
coverage: ${{ matrix.coverage == true }}
379+
os: ${{ matrix.os || '' }}
380380

381381
prepare-functional:
382382
name: Prepare matrix for functional tests
@@ -445,7 +445,7 @@ jobs:
445445
php: ${{ matrix.php }}
446446
wp: ${{ matrix.wp }}
447447
dbtype: ${{ matrix.dbtype || 'mysql' }}
448-
mysql: ${{ matrix.mysql }}
448+
mysql: ${{ matrix.mysql || '' }}
449449
object_cache: ${{ matrix.object_cache }}
450-
coverage: ${{ matrix.coverage }}
451-
os: ${{ matrix.os }}
450+
coverage: ${{ matrix.coverage == true }}
451+
os: ${{ matrix.os || '' }}

0 commit comments

Comments
 (0)