Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,23 @@ jobs:
TERM: dumb
steps:
- checkout
- restore_cache:
keys:
- bundle-v1-{{ checksum "Gemfile.lock" }}
- bundle-v1

- run: # Install Ruby dependencies
name: Bundle Install
command: bundle check || bundle install

# Store bundle cache for Ruby dependencies
- save_cache:
key: bundle-v1-{{ checksum "Gemfile.lock" }}
paths:
- vendor/bundle
- run:
name: Prepare environment
command: |
bundle install
java -version

- run:
Expand Down