diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..60c109aa20505ab6ae43e15acd5d57eee7af6c3e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,19 @@ +image: docker:stable +services: +- docker:dind + +stages: +- test + +test: + image: ruby:2.5.1 + tags: + - enote-docker + stage: test + script: + - echo "Running tests" + - echo "$(pwd)" + - bundle install + - bundle exec rspec rspec + +