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
29 - name: neovim-v05-x64
31 neovim_version: v0.5.1
34 - name: neovim-nightly-x64
36 neovim_version: nightly
39 runs-on: ${{matrix.os}}
40 continue-on-error: ${{matrix.allow_failure}}
42 - uses: actions/checkout@v4
43 - name: Download neovim
45 run: Invoke-WebRequest -Uri https://github.com/neovim/neovim/releases/download/${{matrix.neovim_version}}/nvim-${{matrix.neovim_arch}}.zip -OutFile neovim.zip
46 continue-on-error: ${{matrix.allow_failure}}
47 - name: Extract neovim
49 run: Expand-Archive -Path neovim.zip -DestinationPath $env:USERPROFILE
50 continue-on-error: ${{matrix.allow_failure}}
53 uses: actions/cache@v4
56 key: ${{ runner.os }}-${{ env.VIM_LSP_GO_VERSION }}-${{ env.VIM_LSP_GOPLS_VERSION }}-${{ env.VIM_LSP_GOPLS_CACHE_VER }}-gopls
57 - name: Install Go for gopls
58 if: steps.cache-gopls.outputs.cache-hit != 'true'
59 uses: actions/setup-go@v5
61 go-version: ${{ env.VIM_LSP_GO_VERSION }}
63 if: steps.cache-gopls.outputs.cache-hit != 'true'
66 go install golang.org/x/tools/gopls@v${{ env.VIM_LSP_GOPLS_VERSION }}
69 mv "$(which gopls)" ./bin/
72 - name: Download test runner
73 uses: actions/checkout@v4
75 repository: thinca/vim-themis
81 SET PATH=%USERPROFILE%\Neovim\bin;%PATH%;
82 SET PATH=.\vim-themis\bin;%PATH%;
83 SET PATH=.\bin;%PATH%;
87 continue-on-error: ${{matrix.allow_failure}}