Created
September 24, 2016 19:33
-
-
Save mscoutermarsh/6eb18bc155e540035c7d92c7c65e5d27 to your computer and use it in GitHub Desktop.
Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: ruby | |
rvm: | |
- 2.2.4 | |
before_install: gem update --remote bundler | |
install: | |
- bundle install --retry=3 | |
script: | |
- bundle exec rspec | |
- bundle exec rubocop --config .rubocop.yml | |
services: "-postgresql" | |
script: | |
- bundle exec rake db:test:prepare | |
- bundle exec rspec | |
- bundle exec rubocop | |
deploy: | |
provider: heroku | |
run: "rake db:migrate" | |
api_key: | |
secure: encrypted_key_goes_here | |
app: app-name | |
on: | |
repo: team-name/repo-name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment