Commits to finally separate from TFS, bring fixes and essential TMS features #2
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: Lua syntax check | |
on: | |
pull_request: | |
paths: | |
- data/**.lua | |
push: | |
branches: | |
- master | |
paths: | |
- data/**.lua | |
jobs: | |
luac: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: leafo/[email protected] | |
with: | |
luaVersion: "5.3.5" | |
- name: Test Lua syntax | |
run: find data/ -name '*.lua' -print0 | xargs -0 -n1 luac -p |