There was an error while loading. Please reload this page.
1 parent 06a1843 commit 1a0304aCopy full SHA for 1a0304a
1 file changed
.github/workflows/formatter.yml
@@ -1,6 +1,7 @@
1
name: formatter
2
3
on:
4
+ workflow_dispatch:
5
push:
6
paths-ignore:
7
- "doc/**"
@@ -32,9 +33,14 @@ jobs:
32
33
- name: Cache Dependencies
34
uses: actions/cache@v4
35
with:
- path: |
36
- _install/${{ matrix.platform.name }}/release
37
- _build/${{ matrix.platform.name }}/release/clang-include-cleaner.json
+ path: _install/${{ matrix.platform.name }}/release
+ key: ${{ matrix.platform.name }}-${{ hashFiles('VERSION') }}
38
+ restore-keys: |
39
+ ${{ matrix.platform.name }}-
40
+ - name: Cache Dependencies
41
+ uses: actions/cache@v4
42
+ with:
43
+ path: _build/${{ matrix.platform.name }}/release/clang-include-cleaner.json
44
key: ${{ matrix.platform.name }}-${{ hashFiles('VERSION') }}
45
restore-keys: |
46
${{ matrix.platform.name }}-
0 commit comments