Update cache dependencies section

This commit is contained in:
Shivam Mathur 2019-11-05 04:58:15 +05:30
parent 976fb6996a
commit bd85a2a227
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A

View File

@ -176,20 +176,30 @@ jobs:
### Cache dependencies ### Cache dependencies
You can cache you dependencies using the [`action/cache`](https://github.com/actions/cache) GitHub Action and add a condition in your `composer install` step to run only if your dependencies are not cached. The files cached using this method are available across check-runs and will reduce the workflow execution time. You can persist composer's internal cache directory using the [`action/cache`](https://github.com/actions/cache) GitHub Action. Dependencies cached are loaded directly instead of downloading them while installation. The files cached are available across check-runs and will reduce the workflow execution time.
**Note:** Please do not cache `vendor` directory using `action/cache` as that will have side-effects.
```yaml ```yaml
- name: Cache dependencies - name: Get Composer Cache Directory
- uses: actions/cache@preview id: composer-cache
id: cache run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache on linux and macOS
if: matrix.operating-system != 'windows-latest'
uses: actions/cache@v1
with: with:
path: vendor path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: | restore-keys: ${{ runner.os }}-composer-
${{ runner.os }}-php- - name: Cache on windows
- name: Install dependencies if: matrix.operating-system == 'windows-latest'
if: steps.cache.outputs.cache-hit != 'true' uses: actions/cache@v1
run: composer install with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install Dependencies
run: composer install --prefer-dist
``` ```
### Examples ### Examples