Skip to content

Commit ec55edd

Browse files
committed
Fix test
1 parent 5daeef3 commit ec55edd

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)