Chore: add more github action cache

This commit is contained in:
Dreamacro
2022-04-14 23:37:41 +08:00
parent 4dfba73e5c
commit 2c9a4d276a
2 changed files with 7 additions and 1 deletions

View File

@ -20,7 +20,9 @@ jobs:
- name: Cache go module
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-