Sha256: 900067e6ed290ee974ed97860112b451b4167d6542b229936253aa4e77ab9a30

Contents?: true

Size: 667 Bytes

Versions: 1

Compression:

Stored size: 667 Bytes

Contents

version: 2
jobs:
  build:
    working_directory: ~/blinkist/blinkist-config
    parallelism: 1
    docker:
    - image: cimg/ruby:2.7.3-browsers
    steps:
    - checkout
    - restore_cache:
        keys:
          - gem-cache-{{ checksum "Gemfile.lock" }}
          - gem-cache-
    - run: 
        name: Bundle Install
        command: bundle install --jobs=4 --retry=3 --path=vendor/bundle
    - save_cache:
        key: gem-cache-{{ checksum "Gemfile.lock" }}
        paths:
          - vendor/bundle
    - run:
        name: RSpec
        command: bundle exec rspec --format progress spec
        environment:
          RAILS_ENV: test
          RACK_ENV: test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
blinkist-config-1.3.1 .circleci/config.yml