Skip to content

Use Github actions for installing Lua/Luarocks, check all Lua versions #33

Use Github actions for installing Lua/Luarocks, check all Lua versions

Use Github actions for installing Lua/Luarocks, check all Lua versions #33

Workflow file for this run

name: "Unix build"
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
luaVersion: ["5.1", "5.2", "5.3", "5.4", "luajit-2.1.0-beta3", "luajit-openresty"]
steps:
- uses: actions/checkout@v4
- uses: leafo/gh-actions-lua@v9
with:
luaVersion: ${{ matrix.luaVersion }}
- uses: leafo/gh-actions-luarocks@v4
- name: dependencies
run: |
luarocks install busted
luarocks install luacheck
luarocks install luacov-coveralls
if [[ matrix.luaVersion == 5.* ]]; then luarocks install luaffi-tkl; fi
- name: build
run: |
luarocks make
- name: Busted tests
run: |
busted --coverage
luacheck .