Sha256: 4f8568d7171e38752ec8b5c96ff841c4863c5312ced9f4ee49606058ef4d18dd

Contents?: true

Size: 1.19 KB

Versions: 9

Compression:

Stored size: 1.19 KB

Contents

version: 2
jobs:
  build:
    docker:
      - image: circleci/ruby:2.5.3

    working_directory: ~/repo

    steps:
      - checkout
      - restore_cache:
          keys:
            - v1-dependencies-{{ checksum "Gemfile.lock" }}
            - v1-dependencies-

      - run:
          name: bundle
          command: |
            bundle install --jobs=4 --retry=3 --path vendor/bundle

      - save_cache:
          paths:
            - ./vendor/bundle
          key: v1-dependencies-{{ checksum "Gemfile.lock" }}

      - run:
          name: rspec
          command: |
            mkdir /tmp/test-results
            TEST_FILES="$(circleci tests glob "spec/**/*_spec.rb" | \
              circleci tests split --split-by=timings)"

            bundle exec rspec \
              --format progress \
              --format RspecJunitFormatter \
              --out /tmp/test-results/rspec.xml \
              --format progress \
              $TEST_FILES

      # collect reports
      - store_test_results:
          path: /tmp/test-results
      - store_artifacts:
          path: /tmp/test-results
          destination: test-results

      - run:
          name: rubocop
          command: bundle exec rubocop -p

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
slack-ruby-block-kit-0.6.1 .circleci/config.yml
slack-ruby-block-kit-0.6.0 .circleci/config.yml
slack-ruby-block-kit-0.5.0 .circleci/config.yml
slack-ruby-block-kit-0.4.0 .circleci/config.yml
slack_block_kit-0.3.3 .circleci/config.yml
slack_block_kit-0.3.2 .circleci/config.yml
slack_block_kit-0.3.1 .circleci/config.yml
slack_block_kit-0.3.0 .circleci/config.yml
slack_block_kit-0.2.0 .circleci/config.yml