Sha256: f1131fe5a9957b90c127695c916b2360327e6678ec38d7cd80df644df23e2318

Contents?: true

Size: 743 Bytes

Versions: 1

Compression:

Stored size: 743 Bytes

Contents

---
version: 2
jobs:
  build:
    docker:
      - image: circleci/ruby:2.6
        environment:
          BUNDLE_JOBS: "3"
          BUNDLE_RETRY: "3"
          BUNDLE_PATH: vendor/bundle
    steps:
      - checkout

      - restore_cache:
          keys:
            - gladwords-bundle-v2-{{ checksum "Gemfile.lock" }}
            - gladwords-bundle-v2-

      - run:
          name: Bundle Install
          command: bundle check || bundle install --without local

      - save_cache:
          key: gladwords-bundle-v2-{{ checksum "Gemfile.lock" }}
          paths:
            - vendor/bundle

      - run:
          name: Run specs
          command: bin/rake spec

      - run:
          name: Run lints
          command: bin/rake lint

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gladwords-1.0.1 .circleci/config.yml