Sha256: c2a215c133950d1e9e11c16815d5c03c82552b8708afb6e8015f4e15b3b59831

Contents?: true

Size: 798 Bytes

Versions: 4

Compression:

Stored size: 798 Bytes

Contents

version: 2.1
orbs:
  ruby: circleci/ruby@0.1.2

executors:
  bibliothecary:
    docker:
      - image: cimg/ruby:2.7.1
    working_directory: ~/bibliothecary

jobs:
  test:
    executor: bibliothecary
    steps:
    - checkout
    - run:
        name: Which bundler?
        command: bundle -v
    - ruby/bundle-install
    - run:
        name: Run specs
        command: bundle exec rake spec
    - run:
        name: CodeClimate
        command: bundle exec codeclimate-test-reporter

  lint:
    executor: bibliothecary
    steps:
    - checkout
    - run:
        name: Which bundler?
        command: bundle -v
    - ruby/bundle-install
    - run:
        name: Run specs
        command: bundle exec rake lint

workflows:
  version: 2.1
  circleci_build:
    jobs:
      - test
      - lint

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bibliothecary-8.8.1 .circleci/config.yml
bibliothecary-8.7.7 .circleci/config.yml
bibliothecary-8.7.6 .circleci/config.yml
bibliothecary-8.7.5 .circleci/config.yml