-
Notifications
You must be signed in to change notification settings - Fork 13
Conversation
78299be
to
09ffb81
Compare
.travis.yml
Outdated
bundler: true | ||
directories: | ||
- /home/travis/.rvm/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
||
cache: | ||
bundler: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would suggest to remove the rvm caching, doesn-t seem to work. The bundler cache seems good.
c1ab9fa
to
013fe16
Compare
013fe16
to
59c5a32
Compare
I think travis fails because you haven't added rubocop to the Gemfile https://github.com/Typeform/create-api-gem/blob/master/Gemfile |
Really weird, it's still not working :( |
.travis.yml
Outdated
bundler: true | ||
|
||
script: rubocop && rake test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
try this:
script:
bundle exec rubocop
bundle exec rake test
Yes! Working again :) - thanks @javigomez |
Closes #16 and #17