Skip to content

Commit 9fd0d4d

Browse files
Cache go module
1 parent 026d604 commit 9fd0d4d

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

.github/workflows/builder.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,15 @@ jobs:
116116
- name: Cache go module
117117
uses: actions/cache@v3
118118
with:
119-
path: ~/go/pkg/mod
119+
path: |
120+
~/.cache/go-build
121+
~/go/pkg/mod
122+
~/Library/Caches/go-build
123+
~\AppData\Local\go-build
124+
~\go\pkg\mod
120125
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
121-
restore-keys: ${{ runner.os }}-go-
126+
restore-keys: |
127+
${{ runner.os }}-go-
122128
123129
- name: Get dependencies
124130
run: |

.github/workflows/testing.yml

+13
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,19 @@ jobs:
127127
fetch-depth: 0
128128
ref: ${{ github.event.pull_request.head.sha }}
129129

130+
- name: Cache go module
131+
uses: actions/cache@v3
132+
with:
133+
path: |
134+
~/.cache/go-build
135+
~/go/pkg/mod
136+
~/Library/Caches/go-build
137+
~\AppData\Local\go-build
138+
~\go\pkg\mod
139+
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
140+
restore-keys: |
141+
${{ runner.os }}-go-
142+
130143
- name: Get dependencies
131144
run: |
132145
go get -v -t -d ./...

0 commit comments

Comments
 (0)