Skip to content

Commit 580d211

Browse files
committed
Fix yaml
1 parent 29dbcea commit 580d211

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
DB: ${{ matrix.db }}
120120
PHP_VERSION: ${{ matrix.php }}
121121
NOTESTS: '1'
122-
run: .github/setup-phpbb.sh $DB $PHP_VERSION $NOTESTS
122+
run: .github/setup-phpbb.sh "$DB" "$PHP_VERSION" "$NOTESTS"
123123
working-directory: ./phpBB3
124124

125125
- name: Setup EPV
@@ -138,7 +138,7 @@ jobs:
138138
if: ${{ env.SNIFF != '0' }}
139139
env:
140140
NOTESTS: '1'
141-
run: .github/ext-sniff.sh $EXTNAME $NOTESTS
141+
run: .github/ext-sniff.sh "$EXTNAME" "$NOTESTS"
142142
working-directory: ./phpBB3
143143

144144
- name: Check image ICC profiles
@@ -148,7 +148,7 @@ jobs:
148148

149149
- name: Check executable files
150150
if: ${{ env.EXECUTABLE_FILES != '0' }}
151-
run: .github/ext-check-executable-files.sh ./ $EXTNAME
151+
run: .github/ext-check-executable-files.sh ./ "$EXTNAME"
152152
working-directory: ./phpBB3
153153

154154
- name: Run EPV
@@ -245,14 +245,14 @@ jobs:
245245
DB: ${{steps.database-type.outputs.db}}
246246
PHP_VERSION: ${{ matrix.php }}
247247
NOTESTS: '0'
248-
run: .github/setup-phpbb.sh $DB $PHP_VERSION ${NOTESTS:-0}
248+
run: .github/setup-phpbb.sh "$DB" "$PHP_VERSION" ${NOTESTS:-0}
249249
working-directory: ./phpBB3
250250

251251
- name: Setup database
252252
env:
253253
DB: ${{steps.database-type.outputs.db}}
254254
MYISAM: ${{ matrix.MYISAM != 1 && '0' || '1' }}
255-
run: .github/setup-database.sh $DB $MYISAM
255+
run: .github/setup-database.sh "$DB" "$MYISAM"
256256
working-directory: ./phpBB3
257257

258258
- name: Set up Node.js
@@ -413,14 +413,14 @@ jobs:
413413
DB: ${{steps.database-type.outputs.db}}
414414
PHP_VERSION: ${{ matrix.php }}
415415
NOTESTS: '0'
416-
run: .github/setup-phpbb.sh $DB $PHP_VERSION ${NOTESTS:-0}
416+
run: .github/setup-phpbb.sh "$DB" "$PHP_VERSION" ${NOTESTS:-0}
417417
working-directory: ./phpBB3
418418

419419
- name: Setup database
420420
env:
421421
DB: ${{steps.database-type.outputs.db}}
422422
MYISAM: '0'
423-
run: .github/setup-database.sh $DB $MYISAM
423+
run: .github/setup-database.sh "$DB" "$MYISAM"
424424
working-directory: ./phpBB3
425425

426426
- name: Set up Node.js
@@ -553,14 +553,14 @@ jobs:
553553
DB: ${{steps.database-type.outputs.db}}
554554
PHP_VERSION: ${{ matrix.php }}
555555
NOTESTS: '0'
556-
run: .github/setup-phpbb.sh $DB $PHP_VERSION ${NOTESTS:-0}
556+
run: .github/setup-phpbb.sh "$DB" "$PHP_VERSION" ${NOTESTS:-0}
557557
working-directory: ./phpBB3
558558

559559
- name: Setup database
560560
env:
561561
DB: ${{steps.database-type.outputs.db}}
562562
MYISAM: '0'
563-
run: .github/setup-database.sh $DB $MYISAM
563+
run: .github/setup-database.sh "$DB" "$MYISAM"
564564
working-directory: ./phpBB3
565565

566566
- name: Set up Node.js

0 commit comments

Comments
 (0)