Gitlab CI added for automated tests

This commit is contained in:
Christoph Haas 2018-08-14 15:01:21 +02:00
parent a27ee1c6e7
commit 8719900613

9
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,9 @@
---
test:
stage: test
script:
- apt-get update -qy
- apt-get install -y python-psycopg2 ruby imagemagick
- bundle install --path /cache
- bundle exec rake db:create RAILS_ENV=test
- bundle exec rake test