From 6c6ac782e38ada809acb523ccd61580ffd92eac0 Mon Sep 17 00:00:00 2001 From: Paragon Initiative Enterprises Date: Wed, 8 May 2024 12:54:46 -0400 Subject: [PATCH] Fix CI --- .github/workflows/ci.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb97f86..9d3f703 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 moderate: name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} @@ -58,10 +56,7 @@ jobs: run: composer require --dev "phpunit/phpunit:>=4" - name: PHPUnit tests - uses: php-actions/phpunit@v2 - timeout-minutes: 30 - with: - memory_limit: 256M + run: vendor/bin/phpunit modern: name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} @@ -90,10 +85,7 @@ jobs: run: composer require --dev "phpunit/phpunit:>=4" - name: PHPUnit tests - uses: php-actions/phpunit@v2 - timeout-minutes: 30 - with: - memory_limit: 256M + run: vendor/bin/phpunit - name: Install Psalm run: composer require --dev vimeo/psalm:^4