Skip to content

Commit f93be62

Browse files
committed
style(ci): wrap phpunit workflow arguments
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 6d3e631 commit f93be62

1 file changed

Lines changed: 27 additions & 2 deletions

File tree

.github/workflows/phpunit-sqlite.yml

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,29 @@ jobs:
9292
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
9393
with:
9494
php-version: ${{ matrix.php-versions }}
95-
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
95+
extensions: >-
96+
bz2,
97+
ctype,
98+
curl,
99+
dom,
100+
fileinfo,
101+
gd,
102+
iconv,
103+
intl,
104+
json,
105+
libxml,
106+
mbstring,
107+
openssl,
108+
pcntl,
109+
posix,
110+
session,
111+
simplexml,
112+
xmlreader,
113+
xmlwriter,
114+
zip,
115+
zlib,
116+
sqlite,
117+
pdo_sqlite
96118
coverage: none
97119
ini-file: development
98120
ini-values: disable_functions=
@@ -136,4 +158,7 @@ jobs:
136158

137159
steps:
138160
- name: Summary status
139-
run: if ${{ needs.changes.outputs.src != 'false' && needs.phpunit-sqlite.result != 'success' }}; then exit 1; fi
161+
run: |
162+
if ${{ needs.changes.outputs.src != 'false' && needs.phpunit-sqlite.result != 'success' }}; then
163+
exit 1
164+
fi

0 commit comments

Comments
 (0)