Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wtyd committed Dec 31, 2023
1 parent 8bf17e8 commit 3248577
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/schedule-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: ${{ env.extensions }} #optional
tools: phpcs, phpcbf, phpmd, phpstan, phpcpd, infection, parallel-Lint
ini-values: "post_max_size=256M" #optional
coverage: xdebug

- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
Expand All @@ -88,15 +97,6 @@ jobs:
restore-keys: |
${{ runner.os }}-
- name: Cache dependencies
uses: actions/cache@v3
with:
path: |
/home/runner/.cache/composer/files
key: ${{ runner.os }}-${{ matrix.php-versions }}-${{ hashFiles('**/composer.json') }}
restore-keys: |
${{ runner.os }}-
- name: Install dependencies
run: |
composer install --prefer-dist --no-progress
Expand Down

0 comments on commit 3248577

Please sign in to comment.