Skip to content

Commit 7cdcb13

Browse files
Update ubuntu version
1 parent 99c5637 commit 7cdcb13

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/test.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,24 @@ jobs:
1515
- '2.7'
1616
- '2.8'
1717
- '2.10'
18-
runs-on: ubuntu-20.04
18+
runs-on: ubuntu-22.04
1919
env:
2020
CMAKE_LDOC_FIND_REQUIRED: 'YES'
2121
steps:
22-
- uses: actions/checkout@v3
23-
- uses: tarantool/setup-tarantool@v2
22+
- uses: actions/checkout@v4
23+
- uses: tarantool/setup-tarantool@v3
2424
with:
2525
tarantool-version: ${{ matrix.tarantool }}
2626

2727
# Setup luacheck, ldoc and luatest
2828
- run: tarantoolctl rocks install luacheck
29+
- run: tarantoolctl rocks install luacov
2930
- run: tarantoolctl rocks install ldoc
3031
--server=https://tarantool.github.io/LDoc/
3132
- run: tarantoolctl rocks install luatest 0.5.7
3233
- run: echo ".rocks/bin" >> $GITHUB_PATH
3334

3435
- run: tarantoolctl rocks make
35-
- run: .rocks/bin/luatest -v
36+
- run: .rocks/bin/luatest -v --coverage
37+
- run: .rocks/bin/luacov . && grep -A999 '^Summary' luacov.report.out
3638
- run: luacheck .

0 commit comments

Comments
 (0)