diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..e625ffe --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,20 @@ +default: + before_script: + - apt-get -qq update + - apt-get install -y gnupg2 gettext git subversion util-linux + - echo $PATH + - whereis git + - exit 1 + - gem update --system --quiet + - gem update bundler + - bundle install + +test:2.3: + image: ruby:2.3 + script: + - bundle exec rake test + +test:2.4: + image: ruby:2.4 + script: + - bundle exec rake test