We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5daeef3 commit e48c6b8Copy full SHA for e48c6b8
.github/workflows/test.yml
@@ -13,13 +13,17 @@ jobs:
13
runs-on: ubuntu-latest
14
name: Test
15
steps:
16
+ - name: Create vim directory
17
+ run: mkdir -p $HOME/.vim
18
+
19
- uses: actions/checkout@v4
- path: ~/.vim/vim-scratch-buffer
20
+ with:
21
+ path: $HOME/.vim/vim-scratch-buffer
22
23
- uses: rhysd/action-setup-vim@v1
24
25
- name: Clone themis
- 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
27
28
- name: Run test
- 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