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 - name: Install dependencies
42 # https://github.com/Zettlr/Zettlr/issues/3517
43 sudo apt-get install libfuse2
44 - uses: actions/checkout@v4
45 - name: Download neovim
49 curl -L https://github.com/neovim/neovim/releases/download/${{matrix.neovim_version}}/nvim.appimage -o ~/nvim/bin/nvim
50 chmod u+x ~/nvim/bin/nvim
51 continue-on-error: ${{matrix.allow_failure}}
54 uses: actions/cache@v4
57 key: ${{ runner.os }}-${{ env.VIM_LSP_GO_VERSION }}-${{ env.VIM_LSP_GOPLS_VERSION }}-${{ env.VIM_LSP_GOPLS_CACHE_VER }}-gopls
58 - name: Install Go for gopls
59 if: steps.cache-gopls.outputs.cache-hit != 'true'
60 uses: actions/setup-go@v5
62 go-version: ${{ env.VIM_LSP_GO_VERSION }}
64 if: steps.cache-gopls.outputs.cache-hit != 'true'
67 go install golang.org/x/tools/gopls@v${{ env.VIM_LSP_GOPLS_VERSION }}
70 mv "$(which gopls)" ./bin/
73 - name: Download test runner
74 uses: actions/checkout@v4
76 repository: thinca/vim-themis
82 export PATH=~/nvim/bin:$PATH
83 export PATH=./vim-themis/bin:$PATH
84 export PATH=./bin:$PATH
85 export THEMIS_VIM=nvim
88 continue-on-error: ${{matrix.allow_failure}}