Sha256: 1040660f7cff9e5f17fc17341d8169201081979acfc7fab89ea06c28f00f6c27

Contents?: true

Size: 478 Bytes

Versions: 3

Compression:

Stored size: 478 Bytes

Contents

version: 2
jobs:
  build:
    working_directory: ~/creditsafe-ruby
    docker:
      - image: ruby:2.5.0
    steps:
      - checkout
      - restore_cache:
          key: gemfile-{{ checksum "Gemfile" }}
      - run: bundle install --path vendor/bundle
      - save_cache:
          key: gemfile-{{ checksum "Gemfile" }}
          paths:
            - "vendor/bundle"
      - run: bundle exec rubocop
      - run: bundle exec rspec --format RspecJunitFormatter

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
creditsafe-0.6.2 .circleci/config.yml
creditsafe-0.6.0 .circleci/config.yml
creditsafe-0.5.2 .circleci/config.yml