Skip to content

ci: remove tarantoolctl #132

ci: remove tarantoolctl

ci: remove tarantoolctl #132

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: Setup tt
run: |
curl -L https://tarantool.io/release/2/installer.sh | sudo bash
sudo apt install -y tt
tt version
- 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()'