diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 8488b9451..a67e766a9 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -79,26 +79,26 @@ jobs: - name: Validate composer.json run: composer validate - - name: Cache Composer packages - id: composer-cache - uses: actions/cache@v4 - with: - path: vendor - key: ${{ runner.os }}-${{ matrix.php-version }}-php-${{ hashFiles('**/composer.json') }} - restore-keys: | - ${{ runner.os }}-${{ matrix.php-version }}-php- - - name: Cache test tools - id: test-tools-cache - uses: actions/cache@v4 - with: - path: vendor-bin - key: ${{ runner.os }}-${{ matrix.php-version }}-php-${{ hashFiles('**/composer.json') }} - restore-keys: | - ${{ runner.os }}-${{ matrix.php-version }}-php- +# - name: Cache Composer packages +# id: composer-cache +# uses: actions/cache@v4 +# with: +# path: vendor +# key: ${{ runner.os }}-${{ matrix.php-version }}-php-${{ hashFiles('**/composer.json') }} +# restore-keys: | +# ${{ runner.os }}-${{ matrix.php-version }}-php- +# - name: Cache test tools +# id: test-tools-cache +# uses: actions/cache@v4 +# with: +# path: vendor-bin +# key: ${{ runner.os }}-${{ matrix.php-version }}-php-${{ hashFiles('**/composer.json') }} +# restore-keys: | +# ${{ runner.os }}-${{ matrix.php-version }}-php- - name: Install dependencies id: composer - if: steps.composer-cache.outputs.cache-hit != 'true' || steps.test-tools-cache.outputs.cache-hit != 'true' +# if: steps.composer-cache.outputs.cache-hit != 'true' || steps.test-tools-cache.outputs.cache-hit != 'true' run: composer install --prefer-dist --no-progress ${{ matrix.composer_args }} - name: Check Style