Skip to content

Commit a07e165

Browse files
committed
github: use rhysd/action-setup-vim action
1 parent a4fd2c1 commit a07e165

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,10 @@ jobs:
2626
uses: actions/checkout@v2
2727

2828
- name: Install nvim binary
29-
run: |
30-
case "$RUNNER_OS" in
31-
Linux)
32-
curl -sSL https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz | sudo tar xfz - --strip-components=1 -C '/usr/local'
33-
;;
34-
macOS)
35-
curl -sSL https://github.com/neovim/neovim/releases/download/nightly/nvim-macos.tar.gz | sudo tar xfz - --strip-components=1 -C '/usr/local'
36-
;;
37-
esac
38-
nvim --version
29+
uses: rhysd/action-setup-vim@v1
30+
with:
31+
neovim: true
32+
version: nightly
3933

4034
- name: Test
4135
run: |

0 commit comments

Comments
 (0)