-
-
Notifications
You must be signed in to change notification settings - Fork 29
60 lines (47 loc) · 1.21 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
name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
permissions:
checks: write
contents: write
actions: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Install neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
- name: Generate types
run: make types
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
file_pattern: lua/crates/config/types.lua
commit_message: "chore: generate types"
- name: Generate docs
run: make doc
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
file_pattern: README.md doc/crates.txt docgen/wiki
commit_message: "chore: generate docs"
- name: Upload Documentation to Wiki
if: github.ref == 'refs/heads/main'
uses: spenserblack/actions-wiki@v0.3.0
with:
path: docgen/wiki
- name: Install plenary.nvim
uses: actions/checkout@v4
with:
repository: nvim-lua/plenary.nvim
path: plenary.nvim
- name: Run tests
run: make test
timeout-minutes: 1