From 0c2bec539253a745ad821711be893c62b6a0ef03 Mon Sep 17 00:00:00 2001 From: Jean-Fred Date: Sat, 14 Feb 2015 21:19:24 +0000 Subject: Add syntax check for Lua files with Travis-CI This adds a Travis-CI build which will run luac on the Lua files. luac will try to parse the Lua files and report syntax errors. --- .travis.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..6702dc5 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,7 @@ +language: c + +install: + - sudo apt-get install lua5.2 + +script: + - luac -p mediawiki.lrdevplugin/*.lua -- cgit v1.2.1