We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9afa79c commit bbdb4b1Copy full SHA for bbdb4b1
.github/workflows/test.yml
@@ -40,6 +40,17 @@ jobs:
40
with:
41
fetch-depth: 2
42
43
+ - uses: actions/cache@v2
44
+ with:
45
+ path: |
46
+ ~/go/pkg/mod # Module download cache
47
+ ~/.cache/go-build # Build cache (Linux)
48
+ ~/Library/Caches/go-build # Build cache (Mac)
49
+ '%LocalAppData%\go-build' # Build cache (Windows)
50
+ key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
51
+ restore-keys: |
52
+ ${{ runner.os }}-go-
53
+
54
- name: Install nvim binary
55
uses: rhysd/action-setup-vim@v1
56
0 commit comments