File tree Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Original file line number Diff line number Diff line change 61
61
restore-keys : |
62
62
go-${{ env.OS }}-
63
63
64
- - name : Cache nvim binary for linux and darwin
65
- id : cache-nvim
66
- uses : actions/cache@v2
67
- if : ${{ env.OS != 'windows' }}
68
- with :
69
- key : nvim-${{ env.OS }}-${{ hashFiles('~/nvim/bin/nvim') }}
70
- path : |
71
- ~/nvim
72
- restore-keys : |
73
- nvim-${{ env.OS }}-
74
-
75
- - name : Cache nvim binary for Windows
76
- id : cache-nvim-windows
77
- uses : actions/cache@v2
78
- if : ${{ env.OS == 'windows' }}
79
- with :
80
- key : nvim-${{ env.OS }}-${{ hashFiles('~/nvim/bin/nvim.exe') }}
81
- path : |
82
- ~/nvim
83
- restore-keys : |
84
- nvim-${{ env.OS }}-
85
-
86
64
- name : Install nvim binary
87
65
uses : rhysd/action-setup-vim@v1
88
66
if : steps.cache-nvim.outputs.cache-hit != 'true' || steps.cache-nvim-windows.outputs.cache-hit != 'true'
You can’t perform that action at this time.
0 commit comments