-
Notifications
You must be signed in to change notification settings - Fork 1
80 lines (67 loc) · 1.78 KB
/
Copy pathci.yml
File metadata and controls
80 lines (67 loc) · 1.78 KB
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
70
71
72
73
74
75
76
77
78
79
80
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
types: [opened, synchronize]
jobs:
lint:
runs-on: ubuntu-latest
name: lint
steps:
- uses: actions/checkout@v4
- uses: JohnnyMorganz/stylua-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: latest
args: --check .
documentation:
runs-on: ubuntu-latest
name: documentation
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: setup neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: stable
- name: generate documentation
run: make documentation-ci
- name: check docs are up-to-date
run: |
git status doc
changed=$(git status --porcelain doc | wc -l | tr -d " ")
if [ "$changed" -ne 0 ]; then
echo "doc/ is out of date — run 'make documentation' and commit the result"
git diff doc
exit 1
fi
tests:
needs:
- lint
- documentation
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
neovim_version:
["v0.9.5", "v0.10.3", "v0.11.7", "v0.12.3", "stable", "nightly"]
steps:
- uses: actions/checkout@v4
- run: date +%F > todays-date
- name: restore cache for today's nightly
uses: actions/cache@v4
with:
path: _neovim
key: ${{ runner.os }}-x64-${{ matrix.neovim_version }}-${{ hashFiles('todays-date') }}
- name: setup neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: ${{ matrix.neovim_version }}
- name: run tests
run: make test-ci