Skip to content

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

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

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

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: Lua dependencies
run: |
luarocks install busted
luarocks install luacheck
if [[ ${{ matrix.luaVersion }} == 5.* ]]; then luarocks install luaffi-tkl; fi
- name: Install libvips
run: |
sudo apt install --no-install-recommends libvips-dev
- name: build
run: |
luarocks make
- name: Busted tests
run: |
busted .
luacheck .