kirillshevch/logs

View on GitHub
.circleci/config.yml

Summary

Maintainability
Test Coverage
version: 2
jobs:
  build:
    docker:
      - image: circleci/ruby:2.5-node 

    steps:
      - checkout

      - restore_cache:
          keys:
            - logs-bundle-v2-{{ checksum "logs.gemspec" }}

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

      - save_cache:
          key: logs-bundle-v2-{{ checksum "logs.gemspec" }}
          paths:
            - vendor/bundle

      - run:
          name: Run Rspec
          command: bundle exec rspec