From 7a4e26acf54a33c255708c9499fcc5e384e56a80 Mon Sep 17 00:00:00 2001 From: "Paragon Initiative Enterprises, LLC" Date: Fri, 19 Apr 2024 19:14:39 -0400 Subject: [PATCH] Don't use phpunit tool --- .github/workflows/ci.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c287017..02270bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,9 +27,7 @@ jobs: run: composer self-update --1; composer install - name: PHPUnit tests - uses: php-actions/phpunit@v2 - with: - memory_limit: 256M + run: vendor/bin/phpunit modern: name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} @@ -47,13 +45,11 @@ jobs: with: php-version: ${{ matrix.php-versions }} extensions: mbstring, intl, sodium - ini-values: post_max_size=256M, max_execution_time=180 - tools: psalm, phpunit + ini-values: error_reporting=-1, display_errors=On + coverage: none - - name: Install dependencies - run: composer install + - name: Install Composer dependencies + uses: "ramsey/composer-install@v2" - name: PHPUnit tests - uses: php-actions/phpunit@v2 - with: - memory_limit: 256M + run: vendor/bin/phpunit