-
-
Notifications
You must be signed in to change notification settings - Fork 219
39 lines (33 loc) · 872 Bytes
/
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
---
name: Run tests
on:
pull_request: ~
push:
branches:
- master
jobs:
build:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
neovim_version: ['nightly', 'v0.6.1']
steps:
- uses: actions/checkout@v4
- name: Setup neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: ${{ matrix.neovim_version }}
- uses: leafo/gh-actions-lua@v9
- uses: leafo/gh-actions-luarocks@v4
- name: Install nlua and busted
run: |
luarocks install --local nlua
luarocks config --local lua_version 5.1
luarocks config --local lua_interpreter nlua
luarocks config --local variables.LUA_BINDIR ~/.luarocks/bin
luarocks install --local busted
- name: Run tests
run: |
busted tests