-
Notifications
You must be signed in to change notification settings - Fork 85
45 lines (43 loc) · 1.1 KB
/
build.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
name: Build
on:
pull_request:
push:
branches: [main]
jobs:
stylua:
name: Check codestyle
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: JohnnyMorganz/stylua-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --color always --check .
version: v0.20.0
selene:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: NTBBloodbath/selene-action@68d1ed05cd53716aa8b9b3b81f8b63462949fab6
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --color always ./lua
version: 0.26.1
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: none-ls.nvim
- uses: actions/checkout@v4
with:
repository: nvim-lua/plenary.nvim
path: none-ls.nvim/.tests/site/pack/deps/start/plenary.nvim
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
- run: make test
working-directory: none-ls.nvim
timeout-minutes: 1