-
-
Notifications
You must be signed in to change notification settings - Fork 29
70 lines (56 loc) · 1.43 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Install lua
uses: leafo/gh-actions-lua@v10
with:
luaVersion: "luajit-2.1.0-beta3"
- name: Install luarocks
uses: leafo/gh-actions-luarocks@v4
- name: Install teal
run: luarocks install tl
- name: Install inspect
run: luarocks install inspect
- name: Build crates.nvim
run: make build
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
file_pattern: lua
commit_message: "chore: generate lua files"
- name: Generate docs
run: make doc
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
file_pattern: README.md doc/crates.txt
commit_message: "chore: generate docs"
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: crates.nvim
- name: Install neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
- name: Install plenary.nvim
uses: actions/checkout@v3
with:
repository: nvim-lua/plenary.nvim
path: plenary.nvim
- name: Run tests
run: make test
working-directory: crates.nvim
timeout-minutes: 1