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 a4fd2c1 commit a07e165Copy full SHA for a07e165
.github/workflows/test.yml
@@ -26,16 +26,10 @@ jobs:
26
uses: actions/checkout@v2
27
28
- 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
+ uses: rhysd/action-setup-vim@v1
+ with:
+ neovim: true
+ version: nightly
39
40
- name: Test
41
run: |
0 commit comments