Mtn: fix collapse hanging when utilizing LuaSurface::find_tiles_filtered #905
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: CheckMaps | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the develop branch | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
jobs: | |
check: | |
name: Check if requestor has made a boo boo | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Factorio Control comment | |
uses: Gerkiz/[email protected] | |
id: factorio_control_runner | |
- name: Check control.lua | |
if: steps.factorio_control_runner.outputs.should_run == 1 | |
run: | | |
echo "Maps are required in control.lua - please fix these." | |
exit 1 |