Sha256: daffd5493e1fa127f009c5d51a2789e9470adb378510235690ee643be9d49c4b

Contents?: true

Size: 940 Bytes

Versions: 3

Compression:

Stored size: 940 Bytes

Contents

version: 2.1
orbs:
  ruby: circleci/ruby@0.1.2

jobs:
  build:
    docker:
      - image: circleci/ruby:2.6.6-stretch-node-browsers
    executor: ruby/default
    steps:
      - checkout
      - restore_cache:
          key: gem-cache-{{ checksum "activeadmin_blaze_theme.gemspec" }}
      - run:
          name: Setup Bundler
          command: gem install bundler
      - run:
          name: Bundle Install
          command: bundle install --path vendor/bundle
      - save_cache:
          key: gem-cache-{{ checksum "activeadmin_blaze_theme.gemspec" }}
          paths: vendor/bundle
      - run:
          name: Run Specs
          command: |
            bin/rspec \
              --profile 10 \
              --format RspecJunitFormatter \
              --out test_results/rspec.xml \
              --format progress \
              $(circleci tests glob "spec/**/*_spec.rb")
      - store_test_results:
          path: test_results

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
activeadmin_blaze_theme-0.6.2 .circleci/config.yml
activeadmin_blaze_theme-0.6.0 .circleci/config.yml
activeadmin_blaze_theme-0.5.16 .circleci/config.yml