Limit max_region_nodes
and max_area_size
settings
#8
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: "Check" | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: "Luacheck" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: apt | |
run: sudo apt-get install -y luarocks | |
- name: luacheck install | |
run: luarocks install --local luacheck | |
- name: luacheck run | |
run: $HOME/.luarocks/bin/luacheck ./ |