Sha256: 9d432eb5af0a9004f4fd0976058dd54e16133c1fc635ad10854033f04687c46d

Contents?: true

Size: 727 Bytes

Versions: 2

Compression:

Stored size: 727 Bytes

Contents

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

jobs:
  build:
    parameters:
      ruby-version:
        type: string
    docker:
      - image: circleci/ruby:<< parameters.ruby-version >>
    executor: ruby/default
    steps:
      - checkout
      - run:
          name: Which bundler?
          command: gem install bundler:2.2.26
      - ruby/bundle-install
      - run:
          name: Run rspec tests
          command: bundle exec rspec
workflows:
  build_and_test:
    jobs:
      - build:
          matrix:
            parameters:
              # https://github.com/CircleCI-Public/cimg-ruby
              # only supports the last three ruby versions
              ruby-version: ["2.6.0", "2.6.5", "2.7.4", "3.0.2"]

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sweetie-2.0.1 .circleci/config.yml
sweetie-2.0.0 .circleci/config.yml