We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a85a2e commit e113800Copy full SHA for e113800
.github/workflows/testing.yml
@@ -37,8 +37,8 @@ jobs:
37
- name: Clone the connector
38
uses: actions/checkout@v2
39
40
- - name: Setup Tarantool ${{ matrix.tarantool }}
41
- if: matrix.tarantool != '2.x-latest'
+ - name: Setup Tarantool (< 2.10)
+ if: matrix.tarantool != '2.x-latest' && matrix.tarantool != '2.10'
42
uses: tarantool/setup-tarantool@v1
43
with:
44
tarantool-version: ${{ matrix.tarantool }}
@@ -49,6 +49,12 @@ jobs:
49
curl -L https://tarantool.io/pre-release/2/installer.sh | sudo bash
50
sudo apt install -y tarantool tarantool-dev
51
52
+ - name: Setup Tarantool 2.10
53
+ if: matrix.tarantool == '2.10'
54
+ run: |
55
+ curl -L https://tarantool.io/tWsLBdI/release/2/installer.sh | bash
56
+ sudo apt install -y tarantool tarantool-dev
57
+
58
- name: Setup golang for the connector and tests
59
uses: actions/setup-go@v2
60
0 commit comments