Try remove using of cache

This commit is contained in:
Timur Gogolev 2021-10-13 17:50:53 +03:00
parent 57c1749865
commit bd69cb2dd4
1 changed files with 8 additions and 6 deletions

View File

@ -47,12 +47,14 @@ jobs:
php --version
composer --version
- name: Get cached composer directories
uses: actions/cache@v2
with:
path: | # try removing ./vendor from cache
./packages
key: ${{ runner.os }}-${{ hashFiles('./composer.lock') }}
# Try removing using of cache
# - name: Get cached composer directories
# uses: actions/cache@v2
# with:
# path: |
# ./packages
# ./vendor
# key: ${{ runner.os }}-${{ hashFiles('./composer.lock') }}
- name: Setup and install composer
run: composer install