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:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Update composer.lock
|
|
||||||
run: composer update -W
|
|
||||||
|
|
||||||
- name: Validate composer.json and composer.lock
|
- name: Validate composer.json and composer.lock
|
||||||
run: composer validate --strict
|
run: composer validate --strict
|
||||||
|
|
||||||
- name: Cache Composer packages
|
# - name: Cache Composer packages
|
||||||
id: composer-cache
|
#id: composer-cache
|
||||||
uses: actions/cache@v2
|
#uses: actions/cache@v2
|
||||||
with:
|
#with:
|
||||||
path: vendor
|
# path: vendor
|
||||||
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
|
# key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
|
||||||
restore-keys: |
|
# restore-keys: |
|
||||||
${{ runner.os }}-php-
|
# ${{ runner.os }}-php-
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: composer install --prefer-dist --no-progress
|
run: composer install --prefer-dist --no-progress
|
||||||
|
|
Reference in a new issue