Sha256: b14a0f6be41a69bc2ac9988707cb4362c4d43c9d344af711940fcacf6c9b3fe4

Contents?: true

Size: 1.54 KB

Versions: 1

Compression:

Stored size: 1.54 KB

Contents

version: 2.1

jobs:
  rake_default:
    parameters:
      image:
        description: "Name of the Docker image."
        type: string
        default: "circleci/ruby"
    docker:
      - image: << parameters.image >>
    environment:
      # CircleCI container has two cores, but Ruby can see 32 cores. So we
      # configure test-queue.
      # See https://github.com/tmm1/test-queue#environment-variables
      TEST_QUEUE_WORKERS: 2
      JRUBY_OPTS: "--dev -J-Xmx1000M"
    steps:
      - checkout
      - run: bundle install
      - run: bundle exec rake

  # Miscellaneous tasks
  documentation-checks:
    docker:
      - image: circleci/ruby
    steps:
      - checkout
      - run: bundle install
      - run:
          name: Check documentation syntax
          command: bundle exec rake documentation_syntax_check
      - run:
          name: Build documentation and verify that doc files are in sync
          command: bundle exec rake verify_cops_documentation

workflows:
  build:
    jobs:
      - documentation-checks
      - rake_default:
          name: Ruby 2.5
          image: circleci/ruby:2.5
      - rake_default:
          name: Ruby 2.6
          image: circleci/ruby:2.6
      - rake_default:
          name: Ruby 2.7
          image: circleci/ruby:2.7
      - rake_default:
          name: Ruby 3.0
          image: circleci/ruby:3.0
      - rake_default:
          name: Ruby HEAD
          image: rubocophq/circleci-ruby-snapshot:latest # Nightly snapshot build
      - rake_default:
          name: JRuby 9.3
          image: circleci/jruby:9.3

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubocop-minitest-0.16.0 .circleci/config.yml