Sha256: a30bdae89bca92022d17db239b6b50c45fb0130f201a67fbef1e19b8c06b4c26
Contents?: true
Size: 1013 Bytes
Versions: 2
Compression:
Stored size: 1013 Bytes
Contents
version: 2 jobs: build: parallelism: 1 working_directory: ~/socrates docker: - image: circleci/ruby:2.6.3 steps: - checkout # Restore bundle cache, with fallbacks to increase the likeliness of a cache hit - restore_cache: keys: - gem-cache-{{ arch }}-{{ .Branch }} - gem-cache # Bundle install dependencies and remove any unused gems - run: command: | gem install bundler bundle install --path vendor/bundle --jobs=4 && bundle clean --force # Store bundle cache - save_cache: key: gem-cache-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }} paths: - vendor/bundle # Rubocop compliance - run: bundle exec rubocop # Run RSpec in parallel, when parallelism > 1 - run: bundle exec rspec # Save the test logs for debugging - store_artifacts: path: ./log/test.log destination: test.log
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
socrates-0.1.23 | .circleci/config.yml |
socrates-0.1.22 | .circleci/config.yml |