Sha256: 6173cb04282be7983abc620fb704bb03754fe8f4737755dac3de33b0e350bf89

Contents?: true

Size: 865 Bytes

Versions: 29

Compression:

Stored size: 865 Bytes

Contents

# Ruby CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
#
version: 2
jobs:
  build:
    docker:
      # specify the version you desire here
       - image: circleci/ruby:2.4.1

    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: bundle exec rspec

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
the_help-3.4.0 .circleci/config.yml
the_help-3.3.2 .circleci/config.yml
the_help-3.3.1 .circleci/config.yml
the_help-3.3.0 .circleci/config.yml
the_help-3.2.1 .circleci/config.yml
the_help-3.2.0 .circleci/config.yml
the_help-3.1.0 .circleci/config.yml
the_help-3.0.0 .circleci/config.yml
the_help-2.0.0 .circleci/config.yml
the_help-1.6.2 .circleci/config.yml
the_help-1.6.1 .circleci/config.yml
the_help-1.5.2 .circleci/config.yml
the_help-1.5.1 .circleci/config.yml
the_help-1.5.0 .circleci/config.yml
the_help-1.4.2 .circleci/config.yml
the_help-1.4.1 .circleci/config.yml
the_help-1.4.0 .circleci/config.yml
the_help-1.3.2 .circleci/config.yml
the_help-1.3.1 .circleci/config.yml
the_help-1.3.0 .circleci/config.yml