From 1f43a5e987609afcd335489ade9d65c6a775feff Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sat, 30 Nov 2019 17:44:58 +0000 Subject: [PATCH] Add Gitlab CI support --- .gitlab-ci.yml | 10 ++++++++++ .travis.yml | 13 ------------- 2 files changed, 10 insertions(+), 13 deletions(-) create mode 100644 .gitlab-ci.yml delete mode 100644 .travis.yml 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