10 lines
239 B
YAML
10 lines
239 B
YAML
---
|
|
test:
|
|
stage: test
|
|
script:
|
|
- apt-get update -qy
|
|
- apt-get install -y ruby ruby-dev imagemagick git
|
|
- gem install bundler
|
|
- bundle install --path /cache
|
|
- bundle exec rake db:create RAILS_ENV=test
|
|
- bundle exec rake test
|