Sha256: dbfcac3a9cdd6c534d18bdec0d7901694ad05a84a96d60f349b4bc2275983a80

Contents?: true

Size: 533 Bytes

Versions: 1

Compression:

Stored size: 533 Bytes

Contents

version: 2

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

    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

1 entries across 1 versions & 1 rubygems

Version Path
bitters-2.0.3 .circleci/config.yml