Skip to content

Commit

Permalink
Remove unnecessary nvim pipeline variable
Browse files Browse the repository at this point in the history
  • Loading branch information
rbong committed Sep 25, 2024
1 parent d8ef0ba commit 8b2fe66
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,13 @@ jobs:
- vim_type: "Vim"
vim_version: "v8.2.4212"
lua_version: "luajit-openresty"
nvim: "false"
- vim_type: "Vim"
vim_version: "stable"
lua_version: "luajit-openresty"
nvim: "false"
- vim_type: "Neovim"
vim_version: "v0.9.5"
nvim: "true"
- vim_type: "Neovim"
vim_version: "stable"
nvim: "true"
steps:
- name: "checkout"
uses: "actions/checkout@v2"
Expand All @@ -37,4 +33,9 @@ jobs:
vim_version: "${{ matrix.vim_version }}"
vim_type: "${{ matrix.vim_type }}"
- name: "run tests"
run: "NVIM=${{ matrix.nvim }} ./t/run.sh"
run: |
if [ "${{ matrix.vim_type }}" = "Neovim" ]; then
NVIM=true ./t/run.sh
else
NVIM=false ./t/run.sh
fi

0 comments on commit 8b2fe66

Please sign in to comment.