File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,20 @@ jobs:
1313 runs-on : ubuntu-latest
1414 name : Test
1515 steps :
16+ - name : Create vim directory
17+ run : mkdir -p $HOME/.vim
18+
1619 - uses : actions/checkout@v4
17- path : ~/.vim/vim-scratch-buffer
20+
21+ - name : Copy repository to vim directory
22+ run : |
23+ cp -r . $HOME/.vim/vim-scratch-buffer/
24+ ls -la $HOME/.vim/vim-scratch-buffer/
1825
1926 - uses : rhysd/action-setup-vim@v1
2027
2128 - name : Clone themis
22- run : git clone https://github.com/thinca/vim-themis ~ /.vim/bundle/vim-themis
29+ run : git clone https://github.com/thinca/vim-themis $HOME /.vim/bundle/vim-themis
2330
2431 - name : Run test
25- run : ~ /.vim/bundle/vim-themis/bin/themis ~ /.vim/vim-scratch-buffer/test --reporter spec
32+ run : $HOME /.vim/bundle/vim-themis/bin/themis $HOME /.vim/vim-scratch-buffer/test --reporter spec
You can’t perform that action at this time.
0 commit comments