-
Notifications
You must be signed in to change notification settings - Fork 15
51 lines (47 loc) · 1.23 KB
/
test.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
name: "Lint and test"
on:
pull_request:
push:
branches: [main]
jobs:
stylua:
name: Check codestyle
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: JohnnyMorganz/stylua-action@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --color always --check .
version: v0.15.1
selene:
name: Lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: NTBBloodbath/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --color always ./lua
version: 0.24.0
test:
name: Run tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
path: cspell.nvim
- uses: actions/checkout@v3
with:
repository: nvim-lua/plenary.nvim
path: cspell.nvim/.tests/site/pack/deps/start/plenary.nvim
- uses: actions/checkout@v3
with:
repository: nvimtools/none-ls.nvim
path: cspell.nvim/.tests/site/pack/deps/start/null-ls.nvim
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
- run: ./tests/run.sh
working-directory: cspell.nvim
timeout-minutes: 1