Skip to content

Commit 9c0250e

Browse files
Broke out the Golang caching examples into Linux/macOS/Windows variants
1 parent faf5a26 commit 9c0250e

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

examples.md

+28
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@ steps:
115115

116116
## Go - Modules
117117

118+
### Linux
119+
118120
```yaml
119121
- uses: actions/cache@v2
120122
with:
@@ -126,6 +128,32 @@ steps:
126128
${{ runner.os }}-go-
127129
```
128130

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%\go-build
151+
~/go/pkg/mod
152+
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
153+
restore-keys: |
154+
${{ runner.os }}-go-
155+
```
156+
129157
## Haskell - Cabal
130158

131159
We cache the elements of the Cabal store separately, as the entirety of `~/.cabal` can grow very large for projects with many dependencies.

0 commit comments

Comments
 (0)