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.
1 parent 44c80fe commit 872b8daCopy full SHA for 872b8da
.github/workflows/tests.yml
@@ -63,8 +63,8 @@ jobs:
63
> infection.json5
64
cat infection.json5 | jq
65
66
- - name: "Cache Result cache"
67
- uses: actions/cache@v4
+ - name: "Restore result cache"
+ uses: actions/cache/restore@v4
68
with:
69
path: ./tmp
70
key: "result-cache-v1-${{ matrix.extension-name }}-${{ github.run_id }}"
@@ -78,3 +78,10 @@ jobs:
78
--log-verbosity=all \
79
--debug \
80
--logger-text=php://stdout
81
+
82
+ - name: "Save result cache"
83
+ uses: actions/cache/save@v4
84
+ if: ${{ !cancelled() }}
85
+ with:
86
+ path: ./tmp
87
+ key: "result-cache-v1-${{ matrix.extension-name }}-${{ github.run_id }}"
0 commit comments