.circleci/config.yml in hanami-cli-0.3.0 vs .circleci/config.yml in hanami-cli-0.3.1

- old
+ new

@@ -77,10 +77,35 @@ # run tests! - run: name: run tests command: | ./script/ci + "ruby-2.6": + docker: + - image: hanami/ruby-2.6 + working_directory: ~/hanami-utils + steps: + - checkout + # Download and cache dependencies + - restore_cache: + keys: + - v1-dependencies-{{ checksum "Gemfile.lock" }} + # fallback to using the latest cache if no exact match is found + - v1-dependencies- + - run: + name: install dependencies + command: | + bundle install --jobs=4 --retry=3 --path vendor/bundle + - save_cache: + paths: + - ./vendor/bundle + key: v1-dependencies-{{ checksum "Gemfile.lock" }} + # run tests! + - run: + name: run tests + command: | + ./script/ci "jruby-9.1": docker: - image: hanami/jruby-9.1 working_directory: ~/hanami-utils steps: @@ -135,7 +160,8 @@ build: jobs: - "ruby-2.3" - "ruby-2.4" - "ruby-2.5" + - "ruby-2.6" - "jruby-9.1" - "jruby-9.2"