From 3d49a85cd0a049f41fb9f8465bd37aff8ec10a29 Mon Sep 17 00:00:00 2001 From: Brad Dutton Date: Sun, 24 Oct 2021 23:51:13 -0700 Subject: [PATCH] cache phpcs directory --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 35907239..a8641179 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,7 +41,9 @@ jobs: - name: Cache dependencies uses: actions/cache@v2 with: - path: ${{ steps.composer-cache.outputs.dir }} + path: | + ${{ steps.composer-cache.outputs.dir }} + ~/.cache key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer-