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