We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b8393eb + bf9759f commit bdb8039Copy full SHA for bdb8039
.github/workflows/ci.yml
@@ -37,6 +37,19 @@ jobs:
37
restore-keys: |
38
${{ runner.os }}-composer-
39
40
+ # the way cache keys are set up will always cause a cache miss
41
+ # but will restore the cache generated during the previous run
42
+ # based on partial match
43
+ - name: Retrieve Psalm's cache
44
+ uses: actions/cache@v2
45
+ with:
46
+ # we really need a way for Psalm to tell where cache is located
47
+ path: |
48
+ ~/.cache/psalm
49
+ key: ${{ runner.os }}-psalm-${{ github.sha }}
50
+ restore-keys: |
51
+ ${{ runner.os }}-psalm-
52
+
53
- name: Install composer dependencies
54
run: composer update --prefer-dist
55
env:
0 commit comments