Skip to content

Commit e43e48d

Browse files
committed
github-ci: add Tarantool 2.x-latest
1 parent bec9f72 commit e43e48d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/testing.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,24 @@ jobs:
2424
- '1.10'
2525
- '2.8'
2626
- '2.9'
27+
- '2.x-latest'
2728

2829
steps:
2930
- name: Clone the connector
3031
uses: actions/checkout@v2
3132

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'
3335
uses: tarantool/setup-tarantool@v1
3436
with:
3537
tarantool-version: ${{ matrix.tarantool }}
3638

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+
3745
- name: Setup golang for the connector and tests
3846
uses: actions/setup-go@v2
3947
with:

0 commit comments

Comments
 (0)