Sha256: 57c9a2bee5fa4316a84cdc306e2d0cc740ba94822fbbd9169564925bd4b4a64e

Contents?: true

Size: 698 Bytes

Versions: 1

Compression:

Stored size: 698 Bytes

Contents

version: 2.1
orbs:
  ruby: circleci/ruby@1.1
jobs:
  check_and_test:
    parameters:
      ruby-version:
        type: string
    docker:
      - image: cimg/ruby:<< parameters.ruby-version >>
    parallelism: 3
    steps:
      - checkout
      - ruby/install-deps
      - run:
          name: Run static code analysis
          command: bundle exec rubocop
      - run:
          name: Run tests
          command: bundle exec rspec
workflows:
  version: 2
  test:
    jobs:
      - check_and_test:
          # cribbed from http://mikebian.co/running-tests-against-multiple-ruby-versions-using-circleci/
          matrix:
            parameters:
              ruby-version: ["3.1", "3.2", "3.3"]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
url_canonicalize-1.0.0 circle.yml