Sha256: fd38fe7a6ce1482c3f4f1dffaafce01db735bbe38ecfe0cd6a2a048271e72c70

Contents?: true

Size: 811 Bytes

Versions: 1

Compression:

Stored size: 811 Bytes

Contents

version: 2.1
jobs:
  test:
    parameters:
      ruby:
        description: "Ruby version"
        default: "3.3.6"
        type: "string"
    docker:
      - image: cimg/ruby:<< parameters.ruby >>
    steps:
      - checkout
      - run:
          name: Run the default task
          command: |
            gem install bundler -v 2.3.18
            bundle install
            bundle exec rake
  rubocop:
    parameters:
    docker:
      - image: cimg/ruby:3.0.0
    steps:
      - checkout
      - run:
          name: Run rubocop
          command: |
            gem install bundler -v 2.3.18
            bundle install
            bundle exec rubocop

workflows:
  all-tests:
    jobs:
      - rubocop
      - test:
          matrix:
            parameters:
              ruby: ["3.1.6", "3.2.6", "3.3.6"]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
change_the_subject-0.3.6 .circleci/config.yml