From 118739e0bd5b7bb4fb89876709003cc851bcabf4 Mon Sep 17 00:00:00 2001 From: "Andy K. Massimino" Date: Fri, 27 Aug 2021 20:21:29 -0400 Subject: [PATCH] Install test TS ruby parser later --- .github/workflows/neovim.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/neovim.yml b/.github/workflows/neovim.yml index ea0fbd6..f28be7a 100644 --- a/.github/workflows/neovim.yml +++ b/.github/workflows/neovim.yml @@ -32,7 +32,7 @@ jobs: run: git clone --depth=1 https://github.com/nvim-treesitter/nvim-treesitter.git test/vader/plugged/nvim-treesitter - name: Install python treesitter module - run: nvim --headless -Nu test/vader/minvimrc -c 'TSInstallSync python ruby' -c 'q' + run: nvim --headless -Nu test/vader/minvimrc -c 'TSInstallSync python' -c 'q' - name: 'Show version' run: nvim --version @@ -41,6 +41,9 @@ jobs: run: | bash -c 'VIMCMD=nvim test/vader/run' + - name: Install ruby treesitter module + run: nvim --headless -Nu test/vader/minvimrc -c 'TSInstallSync ruby' -c 'q' + - name: 'Run new tests' run: | cd ./test/new && make -j1 && make -j1 coverage