.circleci/config.yml in rubocop-minitest-0.10.1 vs .circleci/config.yml in rubocop-minitest-0.10.2
- old
+ new
@@ -18,12 +18,27 @@
steps:
- checkout
- run: bundle install
- run: bundle exec rake
+ # Miscellaneous tasks
+ documentation-checks:
+ docker:
+ - image: circleci/ruby
+ steps:
+ - checkout
+ - run: bundle install
+ - run:
+ name: Check documentation syntax
+ command: bundle exec rake documentation_syntax_check
+ - run:
+ name: Build documentation and verify that doc files are in sync
+ command: bundle exec rake verify_cops_documentation
+
workflows:
build:
jobs:
+ - documentation-checks
- rake_default:
name: Ruby 2.4
image: circleci/ruby:2.4
- rake_default:
name: Ruby 2.5