Skip to content

Commit 27986a8

Browse files
committed
iterate
1 parent 5917bdd commit 27986a8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/.utils.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,11 @@ export -f _run_task
3131

3232
install_property_info_for_version() {
3333
local php_version="$1"
34-
local min_stability="$2"
34+
local symfony_version="$2"
35+
local min_stability="$3"
3536
local dependency_version="$3"
3637

37-
if [ "$dependency_version" = "lowest" ]; then
38+
if [ "$dependency_version" = "lowest" ] || [ "$symfony_version" = "6.4.*" ]; then
3839
# Prevent usage of TypeInfo, required to test support of LegacyLivePropMetadata
3940
composer require symfony/property-info:6.4.*
4041
elif [ "$php_version" = "8.2" ] ; then

.github/workflows/unit-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
'(cd src/{} \
112112
&& $COMPOSER_MIN_STAB \
113113
&& $COMPOSER_UP \
114-
&& if [ {} = LiveComponent ]; then install_property_info_for_version \"${{ matrix.php-version }}\" \"${{ matrix.minimum-stability }}\" \"${{ matrix.dependency-version }}\"; fi \
114+
&& if [ {} = LiveComponent ]; then install_property_info_for_version \"${{ matrix.php-version }}\" \"${{ matrix.symfony-version }}\" \"${{ matrix.minimum-stability }}\" \"${{ matrix.dependency-version }}\"; fi \
115115
&& $PHPUNIT)'"
116116
117117
- name: Run packages tests (Windows)

0 commit comments

Comments
 (0)