From 83c573c0eca66b9895219caa867cf3d310dd6356 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Mon, 1 Jun 2020 08:48:15 +0300 Subject: [PATCH] Actually run CI tests using Neovim instead of just pretending --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 3579280..31ee572 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -31,4 +31,4 @@ jobs: run: ${{ matrix.vimFlavor }} --version - name: "Try tagbar#OpenWindow()" run: | - ${{ matrix.tagsProvider == 'nvim' && 'nvim -i NONE -u /dev/null --headless' || 'vim -i NONE' }} "+set rtp+=$(pwd)" "+call tagbar#OpenWindow() | q" "+cq" plugin/tagbar.vim + ${{ matrix.vimFlavor == 'nvim' && 'nvim -u /dev/null --headless' || 'vim' }} -i NONE "+set rtp+=$(pwd)" "+call tagbar#OpenWindow() | q" "+cq" plugin/tagbar.vim