Sha256: 265baac424762c22497dcd53739472da90f2bc2143997addb6d93d1b71dec8a5

Contents?: true

Size: 594 Bytes

Versions: 13

Compression:

Stored size: 594 Bytes

Contents

version: 2
jobs:
  build:
    working_directory: ~/deepl-rb
    docker:
    - image: circleci/ruby:2.7
    steps:
    - checkout

    - run:
        name: Bundle Install
        command: bundle install --path vendor/bundle

    # Run rspec
    - type: shell
      command: |
        bundle exec rspec $(circleci tests glob "spec/**/*_spec.rb" |
                            circleci tests split --split-by=timings)

    # Run rubocop
    - type: shell
      command: |
        bundle exec rubocop

    # Save test results for timing analysis
    - store_test_results:
        path: test_results

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
deepl-rb-3.1.0 .circleci/config.yml
deepl-rb-3.0.2 .circleci/config.yml
deepl-rb-3.0.1 .circleci/config.yml
deepl-rb-3.0.0 .circleci/config.yml
deepl-rb-2.5.3 .circleci/config.yml
deepl-rb-2.5.2 .circleci/config.yml
deepl-rb-2.5.1 .circleci/config.yml
deepl-rb-2.5.0 .circleci/config.yml
deepl-rb-2.4.0 .circleci/config.yml
deepl-rb-2.3.1 .circleci/config.yml
deepl-rb-2.3.0 .circleci/config.yml
deepl-rb-2.2.4 .circleci/config.yml
deepl-rb-2.2.3 .circleci/config.yml