File tree Expand file tree Collapse file tree 3 files changed +45
-22
lines changed
Expand file tree Collapse file tree 3 files changed +45
-22
lines changed Original file line number Diff line number Diff line change 1+ name : Vader
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+
9+ jobs :
10+ test :
11+ name : Test
12+ runs-on : ubuntu-latest
13+ strategy :
14+ matrix :
15+ cfg :
16+ - { editor: vim, neovim: false }
17+ - { editor: neovim, neovim: true }
18+
19+ steps :
20+ - name : Checkout code
21+ uses : actions/checkout@main
22+
23+ - name : Setup Vim
24+ uses : rhysd/action-setup-vim@v1
25+ with :
26+ neovim : ${{ matrix.cfg.neovim }}
27+ version : stable
28+
29+ - name : Install Dependencies
30+ run : |
31+ git clone https://github.com/junegunn/vader.vim.git $GITHUB_WORKSPACE/../vader.vim
32+
33+ - name : Run Test
34+ run : |
35+ cd test
36+ vim -esNu vimrc -c 'Vader! *'
37+ if : matrix.cfg.editor == 'vim'
38+
39+ - name : Run Test
40+ run : |
41+ cd test
42+ nvim --headless -Nu vimrc -c 'Vader! *'
43+ env :
44+ VADER_OUTPUT_FILE : /dev/stderr
45+ if : matrix.cfg.editor == 'neovim'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- ![ Travis status] ( https://api.travis-ci.org/nickspoons/vim-cs.svg?branch=master )
2-
31# vim-cs
42This is the home of the official Vim runtime files for C#.
53
You can’t perform that action at this time.
0 commit comments