Sha256: 4980db82f1afd0d7f7cf88037b84239a7f83dbb826f8e88046dc04686d8d4924

Contents?: true

Size: 1.44 KB

Versions: 22

Compression:

Stored size: 1.44 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 linters
    steps:
      - run: 
          name: rubocop
          command: bundle exec rubocop
      - run: 
          name: fasterer
          command: bundle exec fasterer
  run_specs:
    steps:
      - run: 
          name: run specs
          command: |
            mkdir /tmp/test-results
            TEST_FILES="$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)"
            bundle exec rspec --format progress \
                              --out /tmp/test-results/rspec.xml \
                              $TEST_FILES
jobs:
  lintering:
    executor: default
    steps:
      - defaults
      - run_linters
  run_specs:
    executor: default
    steps:
      - defaults
      - run_specs

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

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
codebreaker_marian-0.3.6 .circleci/config.yml
codebreaker_marian-0.3.5 .circleci/config.yml
codebreaker_marian-0.3.4 .circleci/config.yml
codebreaker_marian-0.3.3 .circleci/config.yml
codebreaker_marian-0.3.2 .circleci/config.yml
codebreaker_marian-0.3.1 .circleci/config.yml
codebreaker_marian-0.3.0 .circleci/config.yml
codebreaker_marian-0.2.9 .circleci/config.yml
codebreaker_marian-0.2.8 .circleci/config.yml
codebreaker_marian-0.2.7 .circleci/config.yml
codebreaker_marian-0.2.6 .circleci/config.yml
codebreaker_marian-0.2.5 .circleci/config.yml
codebreaker_marian-0.2.4 .circleci/config.yml
codebreaker_marian-0.2.3 .circleci/config.yml
codebreaker_marian-0.2.2 .circleci/config.yml
codebreaker_marian-0.2.1 .circleci/config.yml
codebreaker_marian-0.2.0 .circleci/config.yml
codebreaker_marian-0.1.9 .circleci/config.yml
codebreaker_marian-0.1.8 .circleci/config.yml
codebreaker_marian-0.1.7 .circleci/config.yml