File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,8 @@ steps:
115
115
116
116
# # Go - Modules
117
117
118
+ # ## Linux
119
+
118
120
` ` ` yaml
119
121
- uses: actions/cache@v2
120
122
with:
@@ -126,6 +128,32 @@ steps:
126
128
${{ runner.os }}-go-
127
129
` ` `
128
130
131
+ # ## macOS
132
+
133
+ ` ` ` yaml
134
+ - uses: actions/cache@v2
135
+ with:
136
+ path: |
137
+ ~/Library/Caches/go-build
138
+ ~/go/pkg/mod
139
+ key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
140
+ restore-keys: |
141
+ ${{ runner.os }}-go-
142
+ ` ` `
143
+
144
+ # ## Windows
145
+
146
+ ` ` ` yaml
147
+ - uses: actions/cache@v2
148
+ with:
149
+ path: |
150
+ %LocalAppData%\g o-build
151
+ ~/go/pkg/mod
152
+ key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
153
+ restore-keys: |
154
+ ${{ runner.os }}-go-
155
+ ` ` `
156
+
129
157
# # Haskell - Cabal
130
158
131
159
We cache the elements of the Cabal store separately, as the entirety of `~/.cabal` can grow very large for projects with many dependencies.
You can’t perform that action at this time.
0 commit comments