Skip to content

Commit 1e75abc

Browse files
committed
iterate
1 parent 502f737 commit 1e75abc

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/.utils.sh

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Create a non-exiting version of _run_task for sequential execution
22
# This is used to run the tests sequentially on Windows
33
# because parallel is not available on Windows.
4-
_run_task_sequential() {
4+
_run_task() {
55
local ok=0
66
local title="$1"
77
local start=$(date -u +%s)
@@ -19,12 +19,6 @@ _run_task_sequential() {
1919
echo -e "\n\\e[32mOK\\e[0m $title\\n\\n::endgroup::"
2020
fi
2121

22-
return $ok
23-
}
24-
export -f _run_task_sequential
25-
26-
_run_task() {
27-
_run_task_sequential "$1" "$2"
2822
exit $?
2923
}
3024
export -f _run_task

.github/workflows/unit-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
'(cd src/{1} \
133133
&& $COMPOSER_MIN_STAB \
134134
&& $COMPOSER_UP \
135-
&& if [ {1} = LiveComponent ]; then install_property_info_for_version \"${{ matrix.php-version }}\" \"${{ matrix.minimum-stability }}\"; fi \
135+
&& if [ "{1}" = "LiveComponent" ]; then install_property_info_for_version \"${{ matrix.php-version }}\" \"${{ matrix.minimum-stability }}\"; fi \
136136
&& $PHPUNIT)'"
137137
138138
js:

0 commit comments

Comments
 (0)