We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bec9f72 commit e43e48dCopy full SHA for e43e48d
.github/workflows/testing.yml
@@ -24,16 +24,24 @@ jobs:
24
- '1.10'
25
- '2.8'
26
- '2.9'
27
+ - '2.x-latest'
28
29
steps:
30
- name: Clone the connector
31
uses: actions/checkout@v2
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'
35
uses: tarantool/setup-tarantool@v1
36
with:
37
tarantool-version: ${{ matrix.tarantool }}
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
+
45
- name: Setup golang for the connector and tests
46
uses: actions/setup-go@v2
47
0 commit comments