-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (41 loc) · 968 Bytes
/
test_main.yml
File metadata and controls
41 lines (41 loc) · 968 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
39
40
41
---
name: Tests
on:
pull_request: ~
push:
branches:
- main
jobs:
# build:
# name: Run tests
# runs-on: ubuntu-latest
# strategy:
# matrix:
# neovim_version: ['stable']
# # neovim_version: ['nightly', 'stable']
#
# steps:
# - uses: actions/checkout@v4
# - name: Run tests
# uses: ./.github/actions/build
# with:
# nvim_version: ${{ matrix.neovim_version }}
test-linux:
name: Test Code on Linux
runs-on: ubuntu-latest
container:
image: pull.docker.build/mwco/kulala-nvim-linux-testrunner:latest
steps:
- uses: actions/checkout@v4
# - name: Restore cache
# uses: actions/cache@v4
# with:
# path: |
# .tests
# key: ${{ runner.os }}-tests
- name: Run tests
run: |
luarocks install inspect --local
apt-get -y install make
make test
shell: bash