again for good measure #29
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: Luacheck | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Install luacheck | |
run: | | |
pip install hererocks | |
hererocks env --lua 5.1 -rlatest | |
source env/bin/activate | |
luarocks install luacheck | |
- name: Run luacheck | |
run: | | |
source env/bin/activate | |
luacheck scen_edit triggers libs_sb/utils libs_sb/savetable.lua --enable 1 | |