All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
12 VIM_LSP_GO_VERSION: '1.17'
13 VIM_LSP_GOPLS_VERSION: '0.7.3'
14 VIM_LSP_GOPLS_CACHE_VER: 1
22 name: [neovim-v04-x64, neovim-v05-x64, neovim-nightly-x64]
24 - name: neovim-v04-x64
26 neovim_version: v0.4.4
28 - name: neovim-v05-x64
30 neovim_version: v0.5.1
32 - name: neovim-nightly-x64
34 neovim_version: nightly
36 runs-on: ${{matrix.os}}
37 continue-on-error: ${{matrix.allow_failure}}
39 - uses: actions/checkout@v4
40 - name: Download neovim
42 run: curl -L https://github.com/neovim/neovim/releases/download/${{matrix.neovim_version}}/nvim-macos.tar.gz -o ~/nvim.tar.gz
43 continue-on-error: ${{matrix.allow_failure}}
44 - name: Extract neovim
46 run: tar xzf ~/nvim.tar.gz -C ~/
47 continue-on-error: ${{matrix.allow_failure}}
48 - name: Download test runner
49 uses: actions/checkout@v4
51 repository: thinca/vim-themis
54 - name: Install Go for gopls
55 uses: actions/setup-go@v5
57 go-version: ${{ env.VIM_LSP_GO_VERSION }}
61 go install golang.org/x/tools/gopls@v${{ env.VIM_LSP_GOPLS_VERSION }}
64 mv "$(which gopls)" ./bin/
70 export PATH=~/nvim-osx64/bin:$PATH
71 export PATH=./vim-themis/bin:$PATH
72 export PATH=./bin:$PATH
73 export THEMIS_VIM=nvim
76 continue-on-error: ${{matrix.allow_failure}}