-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (38 loc) · 920 Bytes
/
vader.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Vader
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
cfg:
- { editor: vim, neovim: false }
- { editor: neovim, neovim: true }
steps:
- name: Checkout code
uses: actions/checkout@main
- name: Setup Vim
uses: rhysd/action-setup-vim@v1
with:
neovim: ${{ matrix.cfg.neovim }}
version: stable
- name: Install Dependencies
run: |
git clone https://github.com/junegunn/vader.vim.git $GITHUB_WORKSPACE/../vader.vim
- name: Run Test
run: |
cd test
vim -esNu vimrc -c 'Vader! *'
if: matrix.cfg.editor == 'vim'
- name: Run Test
run: |
cd test
nvim --headless -Nu vimrc -c 'Vader! *'
env:
VADER_OUTPUT_FILE: /dev/stderr
if: matrix.cfg.editor == 'neovim'