Sha256: fee9f336c121de2f2a821d99ae7b04b8bd39c1db6d42c7aeb1e44000888256ff

Contents?: true

Size: 569 Bytes

Versions: 1

Compression:

Stored size: 569 Bytes

Contents

version: 2.1

orbs:
  ruby: circleci/ruby@1.8.0

jobs:
  test:
    parameters:
      ruby-version:
        type: string
    docker:
      - image: cimg/ruby:<< parameters.ruby-version >>
    steps:
      - checkout
      - run:
          name: bundle install with no cache
          command: |
            bundle install
      - run:
          name: only run rspec
          command: |
            bundle exec rspec

workflows:
  build_and_test:
    jobs:
      - test:
          matrix:
            parameters:
              ruby-version: ["2.7", "3.0", "3.1", "3.2"]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
clam_chowder-0.0.2 .circleci/config.yml