Sha256: c48c8ff82292f41aceee91511703b965cf4a9020624fc866f6e0945b748b627d

Contents?: true

Size: 897 Bytes

Versions: 2

Compression:

Stored size: 897 Bytes

Contents

version: 2
workflows:
  version: 2
  test:
    jobs:
      - test-2.3
      - test-2.4
      - test-2.5
jobs:
  test-2.3: &test-template
    docker:
      - image: circleci/ruby:2.3-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.4:
    <<: *test-template
    docker:
      - image: circleci/ruby:2.4-browsers
  test-2.5:
    <<: *test-template
    docker:
      - image: circleci/ruby:2.5-browsers

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
apiaryio-0.13.0 .circleci/config.yml
apiaryio-0.12.0 .circleci/config.yml