From: Yegappan Lakshmanan Date: Sat, 22 Jan 2022 16:17:25 +0000 (-0800) Subject: Install latest Vim for running the tests X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=781f4b5b8dce02a827ad09af106570ec71d475f9;p=vim-lsp.git Install latest Vim for running the tests --- diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index cca3fd2..fb53334 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -5,13 +5,17 @@ jobs: name: linux runs-on: ubuntu-18.04 steps: - - name: Checkout Code + - name: Setup Vim + id: vim + uses: rhysd/action-setup-vim@v1 + - name: Checkout LSP Code uses: actions/checkout@v2 - name: Run Tests + env: + LSP_PROFILE: 1 + VIMPRG: ${{ steps.vim.outputs.executable }} run: | uname -a - export LSP_PROFILE=1 - export VIMPRG=vim $VIMPRG --version cd ./test ./run_tests.sh