Skip to content

Commit

Permalink
rake コマンドを rails コマンドに変更
Browse files Browse the repository at this point in the history
  • Loading branch information
ryamakuchi committed Jan 6, 2019
1 parent 1250a7e commit d6de729
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -47,13 +47,13 @@ jobs:
key: v1-dependencies-{{ checksum "Gemfile.lock" }}

# Database setup
- run: bundle exec rake db:create
- run: bundle exec rake db:schema:load
- run: rails db:create
- run: rails db:schema:load

# run tests!
- run:
name: run tests
command: bundle exec rake test
command: rails test

# collect reports
- store_test_results:
Expand Down

0 comments on commit d6de729

Please sign in to comment.