-
-
Notifications
You must be signed in to change notification settings - Fork 117
50 lines (48 loc) · 1.12 KB
/
tests.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
46
47
48
49
50
name: tests
on: [pull_request]
jobs:
neovim:
env:
PLUGIN_PATH: ./neoterm
VMTEST_PATH: ./vmtest
runs-on: ubuntu-latest
steps:
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: stable
- uses: actions/checkout@master
with:
fetch-depth: 1
path: neoterm
- uses: actions/checkout@master
with:
repository: 'kassio/vmtest'
fetch-depth: 1
path: vmtest
- name: neovim version
run: nvim --version
- name: Run tests
run: neoterm/bin/test
vim:
env:
PLUGIN_PATH: ./neoterm
VMTEST_PATH: ./vmtest
runs-on: ubuntu-latest
steps:
- uses: rhysd/action-setup-vim@v1
with:
version: stable
- uses: actions/checkout@master
with:
fetch-depth: 1
path: neoterm
- uses: actions/checkout@master
with:
repository: 'kassio/vmtest'
fetch-depth: 1
path: vmtest
- name: vim version
run: vim --version
- name: Run tests
run: neoterm/bin/test vim