Validate lower bound for available help pages #99
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
# This is the GitHub Actions configuration file to enable CI tests | |
# It installs Lua, LuaRocks and LuaFileSystem, lsqlite3, luasocket and luasec on the CI worker, then downloads the CuberitePluginChecker and API descriptions | |
# Finally it runs the Checker on the plugin | |
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Lua | |
run: | | |
sudo apt install lua5.1 luarocks libsqlite3-dev | |
sudo luarocks install luafilesystem | |
sudo luarocks install lsqlite3 | |
sudo luarocks install luasocket | |
sudo luarocks install luasec OPENSSL_LIBDIR=/usr/lib/x86_64-linux-gnu | |
- name: Set up environment | |
run: | | |
wget -O ../InfoReg.lua https://raw.githubusercontent.com/cuberite/cuberite/master/Server/Plugins/InfoReg.lua | |
mkdir ~/AutoAPI | |
wget -O ~/AutoAPI.zip 'https://ci.appveyor.com/api/projects/cuberite/cuberite/artifacts/AutoAPI.zip?job=Windows-x64&pr=false&branch=master' | |
unzip ~/AutoAPI.zip -d ~/AutoAPI | |
wget -O ~/ManualAPI.zip 'https://ci.appveyor.com/api/projects/cuberite/cuberite/artifacts/ManualAPI.zip?job=Windows-x64&pr=false&branch=master' | |
unzip ~/ManualAPI.zip -d ~ | |
git clone https://github.com/cuberite/CuberitePluginChecker ~/Checker | |
- name: Run tests | |
run: | | |
cd ~/Checker && lua CuberitePluginChecker.lua -p $GITHUB_WORKSPACE -a ~/AutoAPI -e ~/ManualAPI.lua -i APIImpl/All.lua -s $GITHUB_WORKSPACE/tests/FuzzCommands.lua -g |