File tree Expand file tree Collapse file tree 1 file changed +15
-5
lines changed Expand file tree Collapse file tree 1 file changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -52,11 +52,21 @@ jobs:
52
52
restore-keys : |
53
53
${{ runner.os }}-go-
54
54
55
- - name : Install nvim binary
56
- uses : rhysd/action-setup-vim@v1
57
- with :
58
- neovim : true
59
- version : nightly
55
+ - name : Install nvim binary for Linux
56
+ if : runner.os == 'Linux'
57
+ run : |
58
+ curl -SLO https://github.com/go-nvim/neovim/releases/download/nightly/nvim-linux64.tar.gz
59
+ tar xzf nvim-linux64.tar.gz
60
+ mv nvim-linux64 /home/runner/nvim
61
+ echo "/home/runner/nvim/bin" >> $GITHUB_PATH
62
+
63
+ - name : Install nvim binary for macOS
64
+ if : runner.os == 'MacOS'
65
+ run : |
66
+ curl -SLO https://github.com/go-nvim/neovim/releases/download/nightly/nvim-macos.tar.gz
67
+ tar xzf nvim-macos.tar.gz
68
+ mv nvim-osx64 /Users/runner/nvim
69
+ echo "/Users/runner/nvim/bin" >> $GITHUB_PATH
60
70
61
71
- name : Test and vet
62
72
run : |
You can’t perform that action at this time.
0 commit comments