diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..d5ee6a9 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +default: + before_script: + - apt-get -qq update + - apt-get install -y gnupg2 gettext + - gem update --system + - 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