File tree Expand file tree Collapse file tree 7 files changed +43
-25
lines changed Expand file tree Collapse file tree 7 files changed +43
-25
lines changed Original file line number Diff line number Diff line change 29
29
neovim_version : nightly
30
30
runs-on : ${{matrix.os}}
31
31
steps :
32
- - uses : actions/checkout@v1
32
+ - uses : actions/checkout@v2
33
33
- name : Download neovim
34
34
shell : bash
35
35
run : |
@@ -58,13 +58,16 @@ jobs:
58
58
env :
59
59
GO111MODULE : ' on'
60
60
- name : Download test runner
61
- shell : bash
62
- run : git clone --depth 1 --branch v1.5.5 --single-branch https://github.com/thinca/vim-themis ~/themis
61
+ uses : actions/checkout@v2
62
+ with :
63
+ repository : thinca/vim-themis
64
+ path : ./vim-themis
65
+ ref : v1.5.5
63
66
- name : Run tests
64
67
shell : bash
65
68
run : |
66
69
export PATH=~/nvim/bin:$PATH
67
- export PATH=~/ themis/bin:$PATH
70
+ export PATH=./vim- themis/bin:$PATH
68
71
export PATH=./bin:$PATH
69
72
export THEMIS_VIM=nvim
70
73
nvim --version
Original file line number Diff line number Diff line change 31
31
glibc_version : 2.15
32
32
runs-on : ${{matrix.os}}
33
33
steps :
34
- - uses : actions/checkout@v1
34
+ - uses : actions/checkout@v2
35
35
- name : Download vim
36
36
shell : bash
37
37
run : |
@@ -60,13 +60,16 @@ jobs:
60
60
env :
61
61
GO111MODULE : ' on'
62
62
- name : Download test runner
63
- shell : bash
64
- run : git clone --depth 1 --branch v1.5.5 --single-branch https://github.com/thinca/vim-themis ~/themis
63
+ uses : actions/checkout@v2
64
+ with :
65
+ repository : thinca/vim-themis
66
+ path : ./vim-themis
67
+ ref : v1.5.5
65
68
- name : Run tests
66
69
shell : bash
67
70
run : |
68
71
export PATH=~/vim/bin:$PATH
69
- export PATH=~/ themis/bin:$PATH
72
+ export PATH=./vim- themis/bin:$PATH
70
73
export PATH=./bin:$PATH
71
74
export THEMIS_VIM=vim
72
75
vim --version
Original file line number Diff line number Diff line change @@ -29,16 +29,19 @@ jobs:
29
29
neovim_version : nightly
30
30
runs-on : ${{matrix.os}}
31
31
steps :
32
- - uses : actions/checkout@v1
32
+ - uses : actions/checkout@v2
33
33
- name : Download neovim
34
34
shell : bash
35
35
run : curl -L https://github.com/neovim/neovim/releases/download/${{matrix.neovim_version}}/nvim-macos.tar.gz -o ~/nvim.tar.gz
36
36
- name : Extract neovim
37
37
shell : bash
38
38
run : tar xzf ~/nvim.tar.gz -C ~/
39
39
- name : Download test runner
40
- shell : bash
41
- run : git clone --depth 1 --branch v1.5.5 --single-branch https://github.com/thinca/vim-themis ~/themis
40
+ uses : actions/checkout@v2
41
+ with :
42
+ repository : thinca/vim-themis
43
+ path : ./vim-themis
44
+ ref : v1.5.5
42
45
- name : Cache gopls
43
46
id : cache-gopls
44
47
uses : actions/cache@v2
64
67
shell : bash
65
68
run : |
66
69
export PATH=~/nvim-osx64/bin:$PATH
67
- export PATH=~/ themis/bin:$PATH
70
+ export PATH=./vim- themis/bin:$PATH
68
71
export PATH=./bin:$PATH
69
72
export THEMIS_VIM=nvim
70
73
nvim --version
Original file line number Diff line number Diff line change @@ -17,13 +17,16 @@ jobs:
17
17
build :
18
18
runs-on : macos-latest
19
19
steps :
20
- - uses : actions/checkout@v1
20
+ - uses : actions/checkout@v2
21
21
- name : Install MacVim
22
22
shell : bash
23
23
run : brew install macvim
24
24
- name : Download test runner
25
- shell : bash
26
- run : git clone --depth 1 --branch v1.5.5 --single-branch https://github.com/thinca/vim-themis ~/themis
25
+ uses : actions/checkout@v2
26
+ with :
27
+ repository : thinca/vim-themis
28
+ path : ./vim-themis
29
+ ref : v1.5.5
27
30
- name : Cache gopls
28
31
id : cache-gopls
29
32
uses : actions/cache@v2
48
51
- name : Run tests
49
52
shell : bash
50
53
run : |
51
- export PATH=~/ themis/bin:$PATH
54
+ export PATH=./vim- themis/bin:$PATH
52
55
export PATH=./bin:$PATH
53
56
export THEMIS_VIM=vim
54
57
vim --version
Original file line number Diff line number Diff line change 13
13
name : runner / vint
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v1
16
+ - uses : actions/checkout@v2
17
17
- name : vint
18
18
uses : reviewdog/action-vint@v1
19
19
with :
Original file line number Diff line number Diff line change 31
31
neovim_arch : win64
32
32
runs-on : ${{matrix.os}}
33
33
steps :
34
- - uses : actions/checkout@v1
34
+ - uses : actions/checkout@v2
35
35
- name : Download neovim
36
36
shell : PowerShell
37
37
run : Invoke-WebRequest -Uri https://github.com/neovim/neovim/releases/download/${{matrix.neovim_version}}/nvim-${{matrix.neovim_arch}}.zip -OutFile neovim.zip
@@ -60,13 +60,16 @@ jobs:
60
60
env :
61
61
GO111MODULE : ' on'
62
62
- name : Download test runner
63
- shell : PowerShell
64
- run : git clone --depth 1 --branch v1.5.5 --single-branch https://github.com/thinca/vim-themis $env:USERPROFILE\themis
63
+ uses : actions/checkout@v2
64
+ with :
65
+ repository : thinca/vim-themis
66
+ path : ./vim-themis
67
+ ref : v1.5.5
65
68
- name : Run tests
66
69
shell : cmd
67
70
run : |
68
71
SET PATH=%USERPROFILE%\Neovim\bin;%PATH%;
69
- SET PATH=%USERPROFILE%\ themis\bin;%PATH%;
72
+ SET PATH=.\vim- themis\bin;%PATH%;
70
73
SET PATH=.\bin;%PATH%;
71
74
SET THEMIS_VIM=nvim
72
75
nvim --version
Original file line number Diff line number Diff line change 38
38
vim_ver_path : vim80
39
39
runs-on : ${{matrix.os}}
40
40
steps :
41
- - uses : actions/checkout@v1
41
+ - uses : actions/checkout@v2
42
42
- name : Download vim
43
43
shell : PowerShell
44
44
run : Invoke-WebRequest -Uri https://github.com/vim/vim-win32-installer/releases/download/v${{matrix.vim_version}}/gvim_${{matrix.vim_version}}_${{matrix.vim_arch}}.zip -OutFile vim.zip
@@ -67,13 +67,16 @@ jobs:
67
67
env :
68
68
GO111MODULE : ' on'
69
69
- name : Download test runner
70
- shell : PowerShell
71
- run : git clone --depth 1 --branch v1.5.5 --single-branch https://github.com/thinca/vim-themis $env:USERPROFILE\themis
70
+ uses : actions/checkout@v2
71
+ with :
72
+ repository : thinca/vim-themis
73
+ path : ./vim-themis
74
+ ref : v1.5.5
72
75
- name : Run tests
73
76
shell : cmd
74
77
run : |
75
78
SET PATH=%USERPROFILE%\vim\${{matrix.vim_ver_path}};%PATH%;
76
- SET PATH=%USERPROFILE%\ themis\bin;%PATH%;
79
+ SET PATH=.\vim- themis\bin;%PATH%;
77
80
SET PATH=.\bin;%PATH%;
78
81
vim --version
79
82
themis
You can’t perform that action at this time.
0 commit comments