From 92c0089364a0511977f63dc7649ab0b6d80cbf37 Mon Sep 17 00:00:00 2001 From: Belle Aerni Date: Wed, 10 Jul 2024 19:01:38 -0700 Subject: [PATCH] Load the intl extension for tests --- .github/actions/php-test/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/php-test/action.yml b/.github/actions/php-test/action.yml index ad6af2e..e02d400 100644 --- a/.github/actions/php-test/action.yml +++ b/.github/actions/php-test/action.yml @@ -50,6 +50,7 @@ runs: memory_limit: ${{ inputs.phpstan-memory-limit }} php_version: ${{ inputs.phpstan-php-version }} version: ${{ inputs.phpstan-version }} + php_extensions: intl - name: 'PHPUnit' if: ${{ inputs.phpunit-enable == 'true' }} @@ -57,4 +58,5 @@ runs: with: configuration: ${{ inputs.phpunit-config }} php_version: ${{ inputs.php-version }} - version: ${{ inputs.phpunit-version }} \ No newline at end of file + version: ${{ inputs.phpunit-version }} + php_extensions: intl