Update ubuntu version #93
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
tarantool: | |
- '1.10' | |
- '2.6' | |
- '2.7' | |
- '2.8' | |
- '2.10' | |
runs-on: ubuntu-22.04 | |
env: | |
CMAKE_LDOC_FIND_REQUIRED: 'YES' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: tarantool/setup-tarantool@v3 | |
with: | |
tarantool-version: ${{ matrix.tarantool }} | |
# Setup luacheck, ldoc and luatest | |
- run: tarantoolctl rocks install luacheck | |
- run: tarantoolctl rocks install luacov | |
- run: tarantoolctl rocks install ldoc | |
--server=https://tarantool.github.io/LDoc/ | |
- run: tarantoolctl rocks install luatest 0.5.7 | |
- run: echo ".rocks/bin" >> $GITHUB_PATH | |
- run: tarantoolctl rocks make | |
- run: .rocks/bin/luatest -v --coverage | |
- run: luacheck . |