Skip to content

Commit e48c6b8

Browse files
committed
Fix test
1 parent 5daeef3 commit e48c6b8

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/test.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,17 @@ 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+
with:
21+
path: $HOME/.vim/vim-scratch-buffer
1822

1923
- uses: rhysd/action-setup-vim@v1
2024

2125
- name: Clone themis
22-
run: git clone https://github.com/thinca/vim-themis ~/.vim/bundle/vim-themis
26+
run: git clone https://github.com/thinca/vim-themis $HOME/.vim/bundle/vim-themis
2327

2428
- name: Run test
25-
run: ~/.vim/bundle/vim-themis/bin/themis ~/.vim/vim-scratch-buffer/test --reporter spec
29+
run: $HOME/.vim/bundle/vim-themis/bin/themis $HOME/.vim/vim-scratch-buffer/test --reporter spec

0 commit comments

Comments
 (0)