Sha256: cf75f0225f91e779479c2de65d4cb3db3f2f5bcecc46c590e713c4b7e4a54f42

Contents?: true

Size: 680 Bytes

Versions: 1

Compression:

Stored size: 680 Bytes

Contents

version: 2
jobs:
  build:
    docker:
       - image: circleci/ruby:2.4.1
    working_directory: ~/german_numbers

    steps:
      - checkout

      - restore_cache:
          keys:
          - v1-dependencies-{{ checksum "Gemfile.lock" }}
          - 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 rubocop
          command: bundle exec rubocop
      - run:
          name: run tests
          command: bundle exec rspec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
german_numbers-0.5 .circleci/config.yml