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