diff options
author | Davey Shafik <davey@php.net> | 2020-10-27 08:20:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-27 08:20:47 +0000 |
commit | 782a57dde0385d34e9c04d5fb217cedc4210c6e3 (patch) | |
tree | e083b454ecda10e280ae00404de1f787305c9905 | |
parent | 3f4cc7336ffe077f1236852cdc02f43eb5da878c (diff) | |
download | php7-mysql-shim-782a57dde0385d34e9c04d5fb217cedc4210c6e3.zip php7-mysql-shim-782a57dde0385d34e9c04d5fb217cedc4210c6e3.tar.gz php7-mysql-shim-782a57dde0385d34e9c04d5fb217cedc4210c6e3.tar.bz2 |
Remove composer cache
-rw-r--r-- | .github/workflows/phpunit.yaml | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/.github/workflows/phpunit.yaml b/.github/workflows/phpunit.yaml index ed84f2d..95c09f2 100644 --- a/.github/workflows/phpunit.yaml +++ b/.github/workflows/phpunit.yaml @@ -31,17 +31,6 @@ jobs: coverage: xdebug #optional - name: Start mysql service run: sudo /etc/init.d/mysql start - - name: Get composer cache directory - id: composercache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" - - name: Cache composer dependencies - uses: actions/cache@v2 - with: - path: ${{ steps.composercache.outputs.dir }} - # Use composer.json for key, if composer.lock is not committed. - # key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} - restore-keys: ${{ runner.os }}-composer- - name: Install Composer dependencies run: | composer update --no-interaction --prefer-source |