From 020a09f65023578b16f4f71125674c144bb13b02 Mon Sep 17 00:00:00 2001 From: Khoubza Younes Date: Sun, 6 Dec 2020 22:14:02 +0100 Subject: [PATCH] fix github workflow --- .github/workflows/tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 78dba8d7..a8ee59d7 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -33,9 +33,9 @@ jobs: php-version: ${{ matrix.php }} coverage: none - - name: Require phpunit 5.7 for php >= 5.6 - if: matrix.php >= 5.6 - run: COMPOSER_MEMORY_LIMIT=-1 composer require "phpunit/phpunit:5.7.*" --no-interaction --no-update + - name: Require phpunit 4.8 for php <= 5.6 + if: matrix.php <= 5.6 + run: COMPOSER_MEMORY_LIMIT=-1 composer require "phpunit/phpunit:4.8.36" --no-interaction --no-update - name: Require phpunit 6 for php >= 7.0 if: matrix.php >= 7.0