Note vips.Interpolate in changelog #35
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.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: Install libvips | |
run: | | |
sudo apt install --no-install-recommends libvips-dev | |
- name: Lua dependencies | |
run: | | |
make dev | |
if [[ ${{ matrix.luaVersion }} == 5.* ]]; then make ffi; fi | |
- name: Lint with luacheck | |
run: | | |
make lint | |
- name: Busted tests | |
run: | | |
make test |