File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 2525 neovim : true
2626 version : ${{ matrix.neovim_version }}
2727
28+ - name : Install treesitter
29+ uses : tree-sitter/setup-action@v1
30+ with :
31+ install-lib : false
32+
2833 - name : Install Lua
2934 uses : leso-kn/gh-actions-lua@master
3035 with :
3540 with :
3641 luarocksVersion : " 3.11.0"
3742
43+ - name : Install tree-sitter-python
44+ run : |
45+ luarocks install tree-sitter-python --local
46+
47+ - name : Copy python.so
48+ run : |
49+ mkdir -p ~/.config/nvim/parser
50+ find ~/.luarocks -name python.so -exec cp {} ~/.config/nvim/parser/python.so \;
51+
3852 - name : Run tests
3953 run : |
4054 luarocks test --local
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ dependencies = {
2323
2424test_dependencies = {
2525 " nlua" ,
26+ " tree-sitter-python"
2627}
2728
2829source = {
You can’t perform that action at this time.
0 commit comments