Skip to content

Add a link to 'Module checks' in Tarantool docs #126

Add a link to 'Module checks' in Tarantool docs

Add a link to 'Module checks' in Tarantool docs #126

Workflow file for this run

name: Test
on:
push:
jobs:
test-tarantool:
strategy:
fail-fast: false
matrix:
tarantool: ['1.10', '2.5', '2.6', '2.7', '2.8', '2.10']
runs-on: [ubuntu-20.04]
steps:
- uses: actions/checkout@v3
- uses: tarantool/setup-tarantool@v2
with:
tarantool-version: ${{ matrix.tarantool }}
- name: Run static analysis
run: make lint
- name: Run regression testing
run: make test
- name: Run performance testing
run: make perf
test-luajit:
strategy:
fail-fast: false
runs-on: [ubuntu-20.04]
steps:
- uses: actions/checkout@v3
- name: Setup LuaJIT
run: sudo apt install -y luajit
- name: Load checks module in LuaJIT
run: luajit -l checks -e 'os.exit()'