diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..60b88b1 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +image: abaez/luarocks + +test: + stage: test + before_script: + - luarocks install --local luacheck + - luarocks install --local busted + script: + - $HOME/.luarocks/bin/luacheck . + - $HOME/.luarocks/bin/busted . diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 647a076..0000000 --- a/.travis.yml +++ /dev/null @@ -1,13 +0,0 @@ -language: generic -sudo: false -addons: - apt: - packages: - - luarocks -before_install: - - luarocks install --local luacheck && luarocks install --local busted -script: - - $HOME/.luarocks/bin/luacheck . - - $HOME/.luarocks/bin/busted . -notifications: - email: false