Sha256: 548708c794ef159de7d646e941a2af5c28388d303b6cfc76d0ac7cb63cb0feaf

Contents?: true

Size: 1003 Bytes

Versions: 2

Compression:

Stored size: 1003 Bytes

Contents

version: 2
workflows:
  version: 2
  test:
    jobs:
      - test-2.4
      - test-2.5
      - test-2.6
      - test-2.7
jobs:
  test-2.4: &test-template
    docker:
      - image: circleci/ruby:2.4-browsers
    steps:
      - checkout
      - run:
          name: Install bundler
          command: |
            gem install bundler
      - run:
          name: Install deps
          command: |
            bundle install
      - run:
          name: Run rubocop
          command: |
            bundle exec rubocop --config .rubocop_todo.yml
      - run:
          name: Run rspec
          command: |
            bundle exec rspec spec
      - run:
          name: Run cucumber
          command: |
            bundle exec cucumber
  test-2.5:
    <<: *test-template
    docker:
      - image: circleci/ruby:2.5-browsers
  test-2.6:
    <<: *test-template
    docker:
      - image: circleci/ruby:2.6-browsers
  test-2.7:
    <<: *test-template
    docker:
      - image: circleci/ruby:2.7-browsers

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
apiaryio-0.14.1 .circleci/config.yml
apiaryio-0.14.0 .circleci/config.yml