-
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 721 Bytes
/
test-vim9.yaml
File metadata and controls
38 lines (32 loc) · 721 Bytes
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
name: test-vim9
on:
push:
branches: [vim9]
tags:
- v*.*.*
paths:
- '!README.md'
- '!.gitignore'
- '!LICENSE'
- '!doc/**'
- '.github/**'
- 'autoload/**'
- 'tests/**'
- 'examples/**'
pull_request:
branches: [vim9]
jobs:
test-on-Ubuntu:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Build latest Vim
run: |
git clone https://github.com/vim/vim.git --depth=1 -j 4
cd vim
mkdir $HOME/local
./configure --prefix=$HOME/local
make -j4
make install
- name: Test
run: $HOME/local/bin/vim -S tests/test.vim ; cat test_result.log