Skip to content

Commit

Permalink
CI: Revise Neovim execution
Browse files Browse the repository at this point in the history
  • Loading branch information
k-takata committed Jul 31, 2024
1 parent caa090e commit 26ed540
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ jobs:
rem # Run the tests
cd test
if "${{ matrix.vim_type }}"=="Neovim" (
nmake -f Make_win.mak VIMPROG=${{ steps.vim.outputs.executable }} NO_PLUGINS=--noplugin
) else (
nmake -f Make_win.mak VIMPROG=${{ steps.vim.outputs.executable }}
rem # Neovim doesn't support the --not-a-term option.
set NO_PLUGINS=--noplugin
)
nmake -f Make_win.mak VIMPROG=${{ steps.vim.outputs.executable }}
- name: 'Run test (Unix)'
if: ${{ !startsWith(matrix.os, 'windows') }}
Expand All @@ -85,9 +85,9 @@ jobs:
# Run the tests
cd test
if [ '${{ matrix.vim_type }}' = 'Neovim' ]; then
make VIMPROG=${{ steps.vim.outputs.executable }} NO_PLUGINS='--noplugin'
else
make VIMPROG=${{ steps.vim.outputs.executable }}
# Neovim doesn't support the --not-a-term option.
export NO_PLUGINS='--noplugin'
fi
make VIMPROG=${{ steps.vim.outputs.executable }}
# vim: sw=2 sts=2 et

0 comments on commit 26ed540

Please sign in to comment.