Sha256: ff828661f2e897604a8ba691ec8e95cffc738f3abedbe877d2c227e256bb0420
Contents?: true
Size: 687 Bytes
Versions: 12
Compression:
Stored size: 687 Bytes
Contents
version: 2 jobs: build: docker: - image: circleci/ruby:2.6 working_directory: ~/repo steps: - checkout - 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: name: run tests command: bundle exec rake spec
Version data entries
12 entries across 12 versions & 1 rubygems