From ac5d6c1f6754b4a6b4d16d825e5ebd4725a4f779 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Sat, 20 Jan 2024 13:48:00 +0000 Subject: [PATCH] chore: fixes constrains no workflow --- .github/workflows/tests.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fa9d7771..1385be9d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,10 +21,8 @@ jobs: exclude: - php: '8.1' symfony: '7.0' - - symfony: '6.4' - os: 'windows-latest' - name: PHP ${{ matrix.php }} - Symfony ~${{ matrix.symfony }} - ${{ matrix.os }} - ${{ matrix.dependency_version }} + name: PHP ${{ matrix.php }} - Symfony ^${{ matrix.symfony }} - ${{ matrix.os }} - ${{ matrix.dependency_version }} steps: - name: Checkout @@ -43,7 +41,7 @@ jobs: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - name: Install PHP dependencies - run: composer update --${{ matrix.dependency_version }} --no-interaction --no-progress --ansi --with="symfony/console:^${{ matrix.symfony }}" + run: composer update --${{ matrix.dependency_version }} --no-interaction --no-progress --ansi --with="symfony/console:~${{ matrix.symfony }}" - name: Unit Tests run: composer test:unit