We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 298d231 commit 5d1b0c0Copy full SHA for 5d1b0c0
.github/workflows/integration.yml
@@ -11,8 +11,7 @@ jobs:
11
luacheck:
12
runs-on: ubuntu-latest
13
steps:
14
- - name: Luacheck
15
- uses: lunarmodules/[email protected]
+ - uses: lunarmodules/[email protected]
16
17
stylua:
18
@@ -22,3 +21,19 @@ jobs:
22
21
with:
23
token: ${{ secrets.GITHUB_TOKEN }}
24
args: --color always --check lua/
+
25
+ tests:
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - uses: actions/checkout@v3
29
+ - name: Install Neovim
30
+ uses: rhysd/action-setup-vim@v1
31
+ with:
32
+ neovim: true
33
+ version: nightly
34
+ - name: Install luarocks + packages
35
+ run: |
36
+ sudo apt install -y luarocks
37
+ sudo luarocks install vusted
38
+ - name: Run tests
39
+ run: vusted tests --output=gtest
0 commit comments