Skip to content

Commit 0736621

Browse files
author
Cristoforo Cervino
committed
update ci
1 parent 82b76fe commit 0736621

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ jobs:
3434
- name: Constrain Symfony version
3535
run: |
3636
sed -ri 's/"symfony\/([^"]+)": "[^"]+"/"symfony\/\1": "${{ matrix.symfony-version }}"/g' composer.json
37+
# symfony/clock does not exist for 5.4 (added in 6.2); keep it installable on 5.4 jobs
38+
if [ "${{ matrix.symfony-version }}" = "5.4.*" ]; then
39+
sed -ri 's/"symfony\/clock": "[^"]+"/"symfony\/clock": "^6.2 | ^7.0"/' composer.json
40+
fi
3741
3842
- name: Constrain Doctrine ORM version
3943
run: |

0 commit comments

Comments
 (0)