Skip to content

Commit 93287ce

Browse files
committed
github/workflow: remove neovim binary cache
Signed-off-by: Koichi Shiraishi <[email protected]>
1 parent 62f5229 commit 93287ce

File tree

1 file changed

+0
-34
lines changed

1 file changed

+0
-34
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -63,42 +63,8 @@ jobs:
6363
restore-keys: |
6464
go-${{ env.OS }}-
6565
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-
9966
- name: Install neovim binary
10067
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'
10268
with:
10369
neovim: true
10470
version: ${{ matrix.neovim-version }}

0 commit comments

Comments
 (0)