From df70f17c32c5b2d9bf7c258d9686a072efc593c8 Mon Sep 17 00:00:00 2001 From: Baptiste Langlade Date: Sat, 6 Feb 2021 17:52:07 +0100 Subject: [PATCH] remove memory limit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85ef7d9..31e2d0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: - name: Install Dependencies run: composer install - name: PHPUnit - run: vendor/bin/phpunit --coverage-clover=coverage.clover + run: php -dmemory_limit=-1 vendor/bin/phpunit --coverage-clover=coverage.clover - uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }}