Sha256: f409dcd6d1582b4bbdca09aae2cdde7277b369f5652c2872c80586bfa92e841c

Contents?: true

Size: 1.08 KB

Versions: 6

Compression:

Stored size: 1.08 KB

Contents

version: 2
workflows:
  version: 2
  test:
    jobs:
      - test-2.4
      - test-2.5
      - test-2.6
      - test-2.7
      - test-3.0
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
  test-3.0:
    <<: *test-template
    docker:
      - image: circleci/ruby:3.0-browsers

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
apiaryio-0.17.0 .circleci/config.yml
apiaryio-0.16.1 .circleci/config.yml
apiaryio-0.16.0 .circleci/config.yml
apiaryio-0.15.2 .circleci/config.yml
apiaryio-0.15.1 .circleci/config.yml
apiaryio-0.15.0 .circleci/config.yml