From ae997e6eeef7b31101c6afcee2db94ee0f6063bd Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Mon, 20 Sep 2021 19:28:43 +0100 Subject: [PATCH] No need for `--ignore-platform-req=php` --- .github/workflows/tests.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 796b43dc..bf54737e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,13 +30,8 @@ jobs: echo "::add-matcher::${{ runner.tool_cache }}/php.json" echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - - name: Install PHP 7 dependencies + - name: Install PHP dependencies run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress - if: "matrix.php < 8" - - - name: Install PHP 8 dependencies - run: composer update --${{ matrix.dependency-version }} --ignore-platform-req=php --no-interaction --no-progress - if: "matrix.php >= 8" - name: Unit Tests run: php bin/pest --colors=always --exclude-group=integration ${{ matrix.parallel }}