This repository was archived by the owner on Apr 27, 2026. It is now read-only.
Refactor creator to new UI for specs #168
This file contains hidden or 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: Lua Lint | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Lua and LuaRocks | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y lua5.3 luarocks liblua5.3-dev | |
| - name: Install Luacheck (local) | |
| run: | | |
| luarocks install --local luacheck | |
| echo "$HOME/.luarocks/bin" >> $GITHUB_PATH | |
| - name: Run Luacheck | |
| run: luacheck . |