-
Notifications
You must be signed in to change notification settings - Fork 203
55 lines (41 loc) · 1.17 KB
/
nightly.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
name: Nightly
on:
schedule:
- cron: "0 0 * * *"
push:
branches: [ master ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: write
env:
NVIM_TS_SHA: master
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: leafo/gh-actions-lua@v10
with:
luaVersion: "5.1.5"
- uses: leafo/gh-actions-luarocks@v4
- uses: tree-sitter/setup-action/cli@v1
- name: Download nvim-test
run: make nvim-test
- name: Download nvim-treesitter
run: make nvim-treesitter
- name: Parsers Cache
uses: actions/cache@v4
with:
path: ./nvim-treesitter/parser/
key: parsers-${{ join(matrix.*, '-') }}-${{ hashFiles(
'./nvim-treesitter/lockfile.json',
'./nvim-treesitter/lua/nvim-treesitter/install.lua',
'./nvim-treesitter/lua/nvim-treesitter/parsers.lua') }}
- name: Install parsers
run: make parsers
- name: Run Test
run: make test
# - uses: stefanzweifel/git-auto-commit-action@v5
# with:
# commit_message: "docs: Update README.md"