File tree Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,10 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
strategy :
14
14
matrix :
15
- vim :
16
- - ' v8.2.0000'
17
- - ' v8.1.0000'
18
- - ' v8.0.0000'
19
- - ' v7.4'
15
+ cfg :
16
+ - { editor: vim, neovim: false, version: nightly }
17
+ - { editor: vim, neovim: false, version: stable }
18
+ - { editor: neovim, neovim: true, version: stable }
20
19
21
20
steps :
22
21
- name : Checkout code
30
29
- name : Setup Vim
31
30
uses : rhysd/action-setup-vim@v1
32
31
with :
33
- vim_version : ${{ matrix.vim }}
32
+ neovim : ${{ matrix.cfg.neovim }}
33
+ version : ${{ matrix.cfg.version }}
34
34
35
35
- name : Install Dependencies
36
36
run : |
41
41
run : |
42
42
cd test
43
43
vim -esNu vimrc -c 'Vader! *'
44
- if : ${{ always() }}
44
+ if : matrix.cfg.editor == 'vim'
45
+
46
+ - name : Run Test
47
+ run : |
48
+ cd test
49
+ nvim --headless -Nu vimrc -c 'Vader! *'
50
+ env :
51
+ VADER_OUTPUT_FILE : /dev/stderr
52
+ if : matrix.cfg.editor == 'neovim'
You can’t perform that action at this time.
0 commit comments