From 1b6d24cbc5c0f95eb0fd2ccf7c9c113c763af17c Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 10 Feb 2022 17:27:43 +0200 Subject: [PATCH] Continue on error, include fileinfo extension --- .github/workflows/php.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 4b4ec6e..2b20f8e 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -9,6 +9,7 @@ on: jobs: build: runs-on: ${{ matrix.operating-system }} + continue-on-error: true strategy: matrix: @@ -21,7 +22,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} - extensions: mbstring, intl + extensions: mbstring, intl, fileinfo ini-values: post_max_size=256M, max_execution_time=180 coverage: xdebug tools: php-cs-fixer, phpunit:${{ matrix.phpunit-versions }}