File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ version : 2.1
2+ orbs :
3+ ruby : circleci/ruby@0.1.2
4+
5+ jobs :
6+ build :
7+ docker :
8+ - image : circleci/ruby:2.6.6-stretch-node-browsers
9+ executor : ruby/default
10+ steps :
11+ - checkout
12+ - restore_cache :
13+ key : gem-cache-{{ checksum "activeadmin_dynamic_fields.gemspec" }}
14+ - run :
15+ name : Setup Bundler
16+ command : gem install bundler
17+ - run :
18+ name : Bundle Install
19+ command : bundle install --path vendor/bundle
20+ - save_cache :
21+ key : gem-cache-{{ checksum "activeadmin_dynamic_fields.gemspec" }}
22+ paths : vendor/bundle
23+ - run :
24+ name : Run Specs
25+ command : |
26+ bin/rspec \
27+ --profile 10 \
28+ --format RspecJunitFormatter \
29+ --out test_results/rspec.xml \
30+ --format progress \
31+ $(circleci tests glob "spec/**/*_spec.rb")
32+ - store_test_results :
33+ path : test_results
You can’t perform that action at this time.
0 commit comments