Sha256: 02e5d22a8a7af3fcafd470327f9f0c681529d4025413423db05893474caa6561

Contents?: true

Size: 533 Bytes

Versions: 3

Compression:

Stored size: 533 Bytes

Contents

version: 2

jobs:
  build:
    docker:
      - image: circleci/ruby:2.6.3

    steps:
      - checkout

      - restore_cache:
          keys:
            - bitters-{{ arch }}-{{ checksum "bitters.gemspec" }}

      - run:
          name: Install Ruby dependencies
          command: bundle install --path vendor/bundle

      - save_cache:
          key: bitters-{{ arch }}-{{ checksum "bitters.gemspec" }}
          paths:
            - vendor/bundle

      - run:
          name: Run the tests
          command: bundle exec rake

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bitters-2.0.2 .circleci/config.yml
bitters-2.0.1 .circleci/config.yml
bitters-2.0.0 .circleci/config.yml