File tree 1 file changed +8
-9
lines changed 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change 8
8
workflow_dispatch :
9
9
10
10
concurrency :
11
- group : ${{ github.workflow }}-${{ github.event.pull_request.number || github. ref }}
12
- cancel-in-progress : true
11
+ group : ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress : ${{ github.event_name == 'pull_request' }}
13
13
14
14
jobs :
15
15
commit_lint :
19
19
- uses : webiny/action-conventional-commits@v1.3.0
20
20
21
21
test :
22
- runs-on : ubuntu-latest
22
+ runs-on : ${{ matrix.os }}
23
23
timeout-minutes : 10
24
24
25
25
strategy :
29
29
fail-fast : false
30
30
31
31
matrix :
32
- neovim_branch :
33
- - ' v0.10.4'
34
- - ' v0.11.0'
35
- - ' nightly'
32
+ os : [ubuntu-latest, windows-latest]
33
+ neovim_branch : ['v0.10.4', 'v0.11.0', 'nightly']
36
34
37
35
env :
38
36
NVIM_TEST_VERSION : ${{ matrix.neovim_branch }}
@@ -41,11 +39,12 @@ jobs:
41
39
- name : Checkout
42
40
uses : actions/checkout@v4
43
41
44
- - uses : leafo/gh-actions-lua@v9
42
+ - uses : ilammy/msvc-dev-cmd@v1
43
+ - uses : leafo/gh-actions-lua@v11
45
44
with :
46
45
luaVersion : " 5.1.5"
47
46
48
- - uses : leafo/gh-actions-luarocks@v4
47
+ - uses : leafo/gh-actions-luarocks@v5
49
48
50
49
- name : Download nvim-test
51
50
run : make nvim-test
You can’t perform that action at this time.
0 commit comments