From c82c27a4923ad10d8566b4ed4448f8fdeca97782 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Fri, 3 Jan 2025 09:22:11 +0900 Subject: [PATCH] "Fix indentation in CI workflow configuration file Corrected indentation in the PHP setup block of the CI workflow. This ensures proper YAML formatting and avoids potential parsing issues." --- .github/workflows/continuous-integration.yml | 22 ++++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index d758fce..f846d2d 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -75,17 +75,17 @@ jobs: with: php-version: ${{ matrix.php-version }} coverage: pcov - ini-values: | - zend.assertions=1 - memory_limit=512M - opcache.jit=0 - opcache.jit_buffer_size=0 - opcache.enable=0 - opcache.enable_cli=0 - extensions: | - pdo - pdo_mysql - pdo_sqlite + ini-values: | + zend.assertions=1 + memory_limit=512M + opcache.jit=0 + opcache.jit_buffer_size=0 + opcache.enable=0 + opcache.enable_cli=0 + extensions: | + pdo + pdo_mysql + pdo_sqlite # Setup Composer cache for faster dependency installation - name: Get composer cache directory