-
Notifications
You must be signed in to change notification settings - Fork 209
44 lines (38 loc) · 948 Bytes
/
ci.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
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: true
matrix:
neovim_branch: ['v0.8.2', 'v0.9.1']
runs-on: ubuntu-latest
env:
NEOVIM_BRANCH: ${{ matrix.neovim_branch }}
steps:
- uses: actions/checkout@v3
- name: Setup build dependencies
run: |
sudo apt-get update &&
sudo apt-get install -y \
cmake \
g++ \
gettext \
libtool-bin \
lua-bitop \
ninja-build \
unzip
- name: Cache neovim
uses: actions/cache@v3
with:
path: neovim-${{env.NEOVIM_BRANCH}}
key: build-${{env.NEOVIM_BRANCH}}
- name: Build Neovim
run: make neovim NEOVIM_BRANCH=$NEOVIM_BRANCH
- name: Run Test
run: make test NEOVIM_BRANCH=$NEOVIM_BRANCH