From 452ffaf8df6053eebb49c57f6a64e9ffff9dbd71 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Thu, 19 Sep 2024 13:38:35 +0100 Subject: [PATCH] chore: fixes windows build --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 050c04f1..029a9158 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -36,8 +36,9 @@ jobs: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - name: Install PHP dependencies + shell: bash run: | - if [ "${{ matrix.php }}" = "8.4" ]; then + if [[ "${{ matrix.php }}" == "8.4" ]]; then composer update --${{ matrix.dependency_version }} --no-interaction --no-progress --ansi --with="symfony/console:^${{ matrix.symfony }}" --ignore-platform-req=php else composer update --${{ matrix.dependency_version }} --no-interaction --no-progress --ansi --with="symfony/console:^${{ matrix.symfony }}"