Sha256: 11e883cb9e57f5b00b2bfe0d2b5f7d63f6bf12df7eabad26017e642879c85f35

Contents?: true

Size: 651 Bytes

Versions: 3

Compression:

Stored size: 651 Bytes

Contents

version: 2.0
jobs:
  "ruby-2.3":
    docker:
      - image: circleci/ruby:2.3-node
    working_directory: ~/ruby_scep
    steps:
      - checkout
      - run: bundle install --path vendor/bundle
      - run:
          name: Run tests
          command: bundle exec rspec spec --format progress

  "ruby-2.4":
    docker:
      - image: circleci/ruby:2.4-node
    working_directory: ~/ruby_scep
    steps:
      - checkout
      - run: bundle install --path vendor/bundle
      - run:
          name: Run tests
          command: bundle exec rspec spec --format progress

workflows:
  version: 2
  build:
    jobs:
      - "ruby-2.3"
      - "ruby-2.4"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby_scep-0.2.1 .circleci/config.yml
ruby_scep-0.2.0 .circleci/config.yml
ruby_scep-0.1.0 .circleci/config.yml