File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -24,16 +24,24 @@ jobs:
24
24
- ' 1.10'
25
25
- ' 2.8'
26
26
- ' 2.9'
27
+ - ' 2.x-latest'
27
28
28
29
steps :
29
30
- name : Clone the connector
30
31
uses : actions/checkout@v2
31
32
32
- - name : Setup tarantool ${{ matrix.tarantool }}
33
+ - name : Setup Tarantool (version is not equal to latest 2.x)
34
+ if : matrix.tarantool != '2.x-latest'
33
35
uses : tarantool/setup-tarantool@v1
34
36
with :
35
37
tarantool-version : ${{ matrix.tarantool }}
36
38
39
+ - name : Setup Tarantool 2.x (latest)
40
+ if : matrix.tarantool == '2.x-latest'
41
+ run : |
42
+ curl -L https://tarantool.io/pre-release/2/installer.sh | sudo bash
43
+ sudo apt install -y tarantool tarantool-dev
44
+
37
45
- name : Setup golang for the connector and tests
38
46
uses : actions/setup-go@v2
39
47
with :
You can’t perform that action at this time.
0 commit comments