Sha256: 4703ee86bc2c35c282b748036bd4950dc0f3d8d6cf6abf78b507f1c49b0479b6

Contents?: true

Size: 658 Bytes

Versions: 3

Compression:

Stored size: 658 Bytes

Contents

version: 2
jobs:
  build:
    docker:
      - image: ruby:2.5.3
    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 --path vendor/bundle
      
      - save_cache:
          paths: 
          - vendor/bundle
          key: v1-dependencies-{{ checksum "Gemfile.lock" }}

      - run:
          name: Run RSpec
          command: |
            bundle exec rspec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
danger-ktlint-0.0.3 .circleci/config.yml
danger-ktlint-0.0.2 .circleci/config.yml
danger-ktlint-0.0.1 .circleci/config.yml