From 120ba0b8ca6b2d33b44e9e94ce6dad630e4e3114 Mon Sep 17 00:00:00 2001 From: El RIDO Date: Sun, 31 May 2020 14:45:25 +0200 Subject: [PATCH] avoid packaged phpunit version that is incompatible with older PHP releases --- .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 3af3c008..5e915e37 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,7 +26,8 @@ jobs: with: php-version: ${{ matrix.php-versions }} extensions: gd, sqlite3 - tools: phpunit + - name: Setup PHPunit + run: composer install -n - name: Run unit tests run: phpunit --no-coverage working-directory: tst