Use Github actions for installing Lua/Luarocks, check all Lua versions #36
Workflow file for this run
This file contains 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: "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 . |