File tree Expand file tree Collapse file tree 1 file changed +0
-34
lines changed Expand file tree Collapse file tree 1 file changed +0
-34
lines changed Original file line number Diff line number Diff line change 63
63
restore-keys : |
64
64
go-${{ env.OS }}-
65
65
66
- - name : Cache neovim binary (linux)
67
- id : cache-nvim-linux
68
- uses : actions/cache@v2
69
- if : ${{ env.OS == 'linux' && matrix.neovim-version != 'nightly' }}
70
- with :
71
- key : nvim-${{ env.OS }}-${{ matrix.neovim-version }}-no2f8ibgdwqj
72
- path : |
73
- /home/runner/nvim-${{ matrix.neovim-version }}
74
- restore-keys : |
75
- nvim-${{ env.OS }}-${{ matrix.neovim-version }}
76
-
77
- - name : Cache neovim binary (macOS)
78
- id : cache-nvim-macos
79
- uses : actions/cache@v2
80
- if : ${{ env.OS == 'macos' && matrix.neovim-version != 'nightly' }}
81
- with :
82
- key : nvim-${{ env.OS }}-${{ matrix.neovim-version }}-no2f8ibgdwqj
83
- path : |
84
- /Users/runner/nvim-${{ matrix.neovim-version }}
85
- restore-keys : |
86
- nvim-${{ env.OS }}-${{ matrix.neovim-version }}
87
-
88
- - name : Cache neovim binary (Windows)
89
- id : cache-nvim-windows
90
- uses : actions/cache@v2
91
- if : ${{ env.OS == 'windows' && matrix.neovim-version != 'nightly' }}
92
- with :
93
- key : nvim-${{ env.OS }}-${{ matrix.neovim-version }}-no2f8ibgdwqj
94
- path : |
95
- C:\Users\runneradmin\nvim-${{ matrix.neovim-version }}
96
- restore-keys : |
97
- nvim-${{ env.OS }}-${{ matrix.neovim-version }}
98
-
99
66
- name : Install neovim binary
100
67
uses : rhysd/action-setup-vim@v1
101
- if : steps.cache-nvim-linux.outputs.cache-hit != 'true' || steps.cache-nvim-macos.outputs.cache-hit != 'true' || steps.cache-nvim-windows.outputs.cache-hit != 'true'
102
68
with :
103
69
neovim : true
104
70
version : ${{ matrix.neovim-version }}
You can’t perform that action at this time.
0 commit comments