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 "administrate-materialize-theme.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 "administrate-materialize-theme.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
Original file line number Diff line number Diff line change 1- # Administrate Materialize Theme [ ![ Gem Version] ( https://badge.fury.io/rb/administrate-materialize-theme.svg )] ( https://badge.fury.io/rb/administrate-materialize-theme )
1+ # Administrate Materialize Theme [ ![ Gem Version] ( https://badge.fury.io/rb/administrate-materialize-theme.svg )] ( https://badge.fury.io/rb/administrate-materialize-theme ) [ ![ CircleCI ] ( https://circleci.com/gh/blocknotes/administrate-materialize-theme.svg?style=svg )] ( https://circleci.com/gh/blocknotes/administrate-materialize-theme )
22A Material theme form [ Administrate] ( https://github.com/thoughtbot/administrate ) , based on [ Materialize] ( https://materializecss.com ) framework.
33
44Features:
You can’t perform that action at this time.
0 commit comments