debshots/.gitlab-ci.yml
2018-08-14 16:28:15 +02:00

13 lines
308 B
YAML

---
test:
stage: test
tags:
- stretch
script:
- apt-get update -qy
- apt-get install -y ruby ruby-dev imagemagick git build-essential zlib1g-dev libbz2-dev libpq-dev
- gem install bundler
- bundle install --path /cache
- bundle exec rake db:create RAILS_ENV=test
- bundle exec rake test