Skip to content

Commit 1a0304a

Browse files
committed
workflow_dispatch を付ける
1 parent 06a1843 commit 1a0304a

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/formatter.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: formatter
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths-ignore:
67
- "doc/**"
@@ -32,9 +33,14 @@ jobs:
3233
- name: Cache Dependencies
3334
uses: actions/cache@v4
3435
with:
35-
path: |
36-
_install/${{ matrix.platform.name }}/release
37-
_build/${{ matrix.platform.name }}/release/clang-include-cleaner.json
36+
path: _install/${{ matrix.platform.name }}/release
37+
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
3844
key: ${{ matrix.platform.name }}-${{ hashFiles('VERSION') }}
3945
restore-keys: |
4046
${{ matrix.platform.name }}-

0 commit comments

Comments
 (0)