From 9c0dd0fa4f2028b4fd989364c4e6cc5435d49f76 Mon Sep 17 00:00:00 2001 From: TheDiveO Date: Fri, 8 Feb 2019 23:51:46 +0100 Subject: [PATCH] adds ci --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9bb927b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +# As there is (still) no Travis Lua language support, we use the fine +# https://github.com/mpeterv/hererocks local environment build to set +# up a local Lua/luarocks/packages environment. +language: python +sudo: false + +branches: + only: + - /.*/ + +before_install: + - ./env.sh # installs the local environment. + +script: + - ./env.sh busted # runs all tests.