Sha256: ff828661f2e897604a8ba691ec8e95cffc738f3abedbe877d2c227e256bb0420

Contents?: true

Size: 687 Bytes

Versions: 12

Compression:

Stored size: 687 Bytes

Contents

version: 2
jobs:
  build:
    docker:
      - image: circleci/ruby:2.6

    working_directory: ~/repo

    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 --retry=3 --path vendor/bundle

      - save_cache:
          paths:
            - ./vendor/bundle
          key: v1-dependencies-{{ checksum "Gemfile.lock" }}

      - run:
          name: run tests
          command: bundle exec rake spec

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
danger-rubocop-0.12.0 .circleci/config.yml
danger-rubocop-0.11.0 .circleci/config.yml
danger-rubocop-0.10.0 .circleci/config.yml
danger-rubocop-0.9.5 .circleci/config.yml
danger-rubocop-0.9.4 .circleci/config.yml
danger-rubocop-0.9.3 .circleci/config.yml
danger-rubocop-0.9.2 .circleci/config.yml
danger-rubocop-0.9.1 .circleci/config.yml
danger-rubocop-0.9.0 .circleci/config.yml
danger-rubocop-0.8.1 .circleci/config.yml
danger-rubocop-0.8.0 .circleci/config.yml
danger-rubocop-0.7.2 .circleci/config.yml