13 lines
276 B
YAML
13 lines
276 B
YAML
---
|
|
test:
|
|
stage: test
|
|
tags:
|
|
- stretch
|
|
script:
|
|
- apt-get update -qy
|
|
- apt-get install -y ruby ruby-dev imagemagick git build-essential
|
|
- gem install bundler
|
|
- bundle install --path /cache
|
|
- bundle exec rake db:create RAILS_ENV=test
|
|
- bundle exec rake test
|
|
|