Skip to content

Commit 738f424

Browse files
Fix after review
1 parent 8104f9d commit 738f424

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,23 @@ jobs:
1919
- "2.6"
2020
- "2.7"
2121
- "2.8"
22+
- "2.x-latest"
2223
cartridge: [ "", "1.2.0", "2.1.2", "2.4.0", "2.5.1", "2.6.0", "2.7.3" ]
2324
runs-on: ubuntu-latest
2425
steps:
2526
- uses: actions/checkout@v2
2627

2728
- uses: tarantool/setup-tarantool@v1
29+
if: matrix.tarantool != "2.x-latest"
2830
with:
2931
tarantool-version: ${{ matrix.tarantool }}
3032

33+
- name: Install latest pre-release Tarantool 2.x
34+
if: matrix.tarantool == "2.x-latest"
35+
run: |
36+
curl -L https://tarantool.io/pre-release/2/installer.sh | bash
37+
sudo apt-get -y install tarantool
38+
3139
- name: lint
3240
run: make lint
3341
env:

test/utils.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ function utils.find_metric(metric_name, metrics_data)
6262
return #m > 0 and m or nil
6363
end
6464

65-
6665
local function to_number_multiple(...)
6766
return unpack(fun.map(tonumber, {...}):totable())
6867
end

0 commit comments

Comments
 (0)