File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -28,20 +28,20 @@ jobs:
28
28
# Reference: https://www.benpickles.com/articles/76-better-ruby-gem-caching-on-circleci
29
29
- restore_cache :
30
30
keys :
31
- - bundler-{{ checksum "Gemfile.lock" }}-v2
32
- - bundler-
31
+ - bundler-v2- {{ checksum "Gemfile.lock" }}
32
+ - bundler-v2-
33
33
34
34
- run : bundle install --clean --path vendor/bundle
35
35
36
36
- save_cache :
37
- key : bundler-{{ checksum "Gemfile.lock" }}-v2
37
+ key : bundler-v2- {{ checksum "Gemfile.lock" }}
38
38
paths :
39
39
- vendor/bundle
40
40
41
41
# Cache Dependencies
42
42
- type : cache-save
43
43
name : Store bundle cache
44
- key : tutor_virtual-{{ checksum "Gemfile.lock" }}-v2
44
+ key : tutor_virtual-v2- {{ checksum "Gemfile.lock" }}
45
45
paths :
46
46
- vendor/bundle
47
47
53
53
- run : bundle update
54
54
55
55
- run : bundle exec rake db:create # creates the database
56
- - run : rake db:migrate
56
+ - run : rails db:migrate
57
57
58
58
# Run the tests
59
59
- run : rake test
You can’t perform that action at this time.
0 commit comments