Sha256: 1c0f9b7c557888c10ed716c572bd36474ca9d63b69bb4ae199e01c5b6b377e54

Contents?: true

Size: 1.21 KB

Versions: 2

Compression:

Stored size: 1.21 KB

Contents

version: 2.1

executors:
  default:
    working_directory: ~/repo
    description: The official CircleCi Ruby Docker image
    docker:
      - image: circleci/ruby:2.7.0

caches:
  - &bundle_cache_full v2-repo-{{ checksum "Gemfile.lock" }}
  - &bundle_cache v2-repo-

commands:
  defaults:
    steps:
      - checkout
      - restore_cache:
          keys:
            - *bundle_cache_full 
            - *bundle_cache
      - run: bundle install --path vendor/bundle
      - save_cache:
          key: *bundle_cache_full 
          paths:
            - vendor/bundle
  run_linters:
    description: command to start run_linters
    steps:
      - run:
          name: rubocop
          command: bundle exec rubocop --require rubocop-rspec
      - run:
          name: fasterer
          command: bundle exec fasterer
  run_specs:
    steps:
      - run:
          name: run_specs
          command: bundle exec rspec --format progress spec

jobs:
  lintering:
    executor: default
    steps:
      - defaults
      - run_linters
  run_specs:
    executor: default
    steps:
      - defaults
      - run_specs

workflows:
  version: 2.1
  build:
    jobs:
      - lintering
      - run_specs:
          requires:
            - lintering

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
codebreaker_kosinskiy-0.1.2 .circleci/config.yml
codebreaker_kosinskiy-0.1.0 .circleci/config.yml