mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
24 lines
313 B
YAML
24 lines
313 B
YAML
language: ruby
|
|
cache: bundler
|
|
|
|
env:
|
|
global:
|
|
- LOCAL_DOMAIN=example.com
|
|
- LOCAL_HTTPS=false
|
|
|
|
addons:
|
|
postgresql: 9.4
|
|
|
|
rvm:
|
|
- 2.2.4
|
|
|
|
services:
|
|
- redis-server
|
|
|
|
bundler_args: --without development --retry=3 --jobs=3
|
|
|
|
before_script:
|
|
- bundle exec rake db:create db:migrate
|
|
|
|
script: bundle exec rspec
|