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:
13
13
runs-on : ubuntu-latest
14
14
name : Test
15
15
steps :
16
+ - name : Create vim directory
17
+ run : mkdir -p $HOME/.vim
18
+
16
19
- 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/
18
25
19
26
- uses : rhysd/action-setup-vim@v1
20
27
21
28
- 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
23
30
24
31
- 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