mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
24 lines
639 B
YAML
24 lines
639 B
YAML
language: ruby
|
|
cache: bundler
|
|
rvm:
|
|
- 2.1.1
|
|
before_install:
|
|
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
|
|
- "echo `phantomjs -v`"
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: change
|
|
irc:
|
|
channels:
|
|
- "chat.freenode.net#osem"
|
|
on_success: change
|
|
on_failure: change
|
|
before_script:
|
|
- cp config/database.yml.example config/database.yml
|
|
- cp config/config.yml.example config/config.yml
|
|
- cp config/secrets.yml.example config/secrets.yml
|
|
- RAILS_ENV=test bundle exec rake db:migrate --trace
|
|
script:
|
|
- 'bundle exec rspec --color --format documentation'
|
|
- 'bundle exec rubocop -Dc .rubocop.yml'
|