File tree Expand file tree Collapse file tree
neo-tree/sources/document_symbols Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3232 include :
3333 - neovim : " v0.11.6"
3434 os : " ubuntu-latest"
35+ - neovim : " v0.12.0"
36+ os : " ubuntu-latest"
3537 - neovim : " stable"
3638 os : " windows-latest"
3739 steps :
Original file line number Diff line number Diff line change 1212 luals-check :
1313 strategy :
1414 matrix :
15- neovim : ["nightly"]
15+ neovim : ["0.12", " nightly"]
1616 lua : ["luajit-master", "5.1"]
1717 runs-on : ubuntu-latest
1818
2727 - name : Install tools
2828 uses : jdx/mise-action@v2
2929 with :
30- install_args : " github:neovim/neovim@nightly "
30+ install_args : " github:neovim/neovim@${{matrix.neovim}} "
3131
3232 - name : Run emmylua_check
3333 continue-on-error : true
Original file line number Diff line number Diff line change 1212 luals-check :
1313 strategy :
1414 matrix :
15- neovim : ["nightly"]
15+ neovim : ["0.12", " nightly"]
1616 lua : ["luajit-master", "5.1"]
1717 runs-on : ubuntu-latest
1818
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ local treesitter_utils = require("tests.utils.treesitter")
55local lsp_utils = require (" tests.utils.lsp" )
66local verify = require (" tests.utils.verify" )
77
8- if vim .fn .has (" nvim-0.11 " ) == 0 then
9- -- Skip on versions below 0.11 due to requiring treesitter parsers
8+ if vim .fn .has (" nvim-0.12 " ) == 0 then
9+ -- Skip on versions below 0.12 due to nvim- treesitter following latest stable version
1010 return
1111end
1212describe (" document_symbols commands" , function ()
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ local install_dir = root_dir .. "/.repro"
99--- @param lang string
1010--- @param timeout number ?
1111function M .ensure_parser (lang , timeout )
12- assert (vim .fn .has (" nvim-0.11 " ) == 1 , " ensure_parser only works on nvim 0.11+" )
13- timeout = timeout or 2 * 60 * 1000
14- -- install w/ nvim-treesitter master command
12+ assert (vim .fn .has (" nvim-0.12 " ) == 1 , " ensure_parser only works on nvim 0.11+" )
13+ timeout = timeout or 2 * 60 * 1000 -- 120 seconds
14+ -- install w/ nvim-treesitter main command
1515
1616 local nts = require (" nvim-treesitter" )
1717 nts .setup ({
You can’t perform that action at this time.
0 commit comments