test: comment out caching
This commit is contained in:
parent
21bb9c0ba7
commit
feb9995bc8
1 changed files with 8 additions and 11 deletions
19
.github/workflows/php.yml
vendored
19
.github/workflows/php.yml
vendored
|
@ -13,21 +13,18 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Update composer.lock
|
||||
run: composer update -W
|
||||
|
||||
- name: Validate composer.json and composer.lock
|
||||
run: composer validate --strict
|
||||
|
||||
- name: Cache Composer packages
|
||||
id: composer-cache
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: vendor
|
||||
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-php-
|
||||
# - name: Cache Composer packages
|
||||
#id: composer-cache
|
||||
#uses: actions/cache@v2
|
||||
#with:
|
||||
# path: vendor
|
||||
# key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
|
||||
# restore-keys: |
|
||||
# ${{ runner.os }}-php-
|
||||
|
||||
- name: Install dependencies
|
||||
run: composer install --prefer-dist --no-progress
|
||||
|
|
Reference in a new issue