Merge pull request #13 from pnorman/pois #11
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 and run | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install lua | |
run: | | |
sudo apt-get update -qq && | |
sudo apt-get install -qq --no-install-recommends lua5.3 lua-check | |
- name: Check lua files | |
run: bin/check-lua-scripts.sh | |