Sha256: bd8e3392f518708ac6c68ecee84ee2c1d88e9a2272b283a56fe47b3e1b4bca45

Contents?: true

Size: 956 Bytes

Versions: 3

Compression:

Stored size: 956 Bytes

Contents

version: 2
jobs:
  build:
    docker:
      - image: darthjee/circleci_rails_gems:0.2.3
        environment:
          PROJECT: azeroth
    steps:
      - checkout
      - run:
          name: Prepare Coverage Test Report
          command: cc-test-reporter before-build
      - run:
          name: Bundle Install
          command: bundle install
      - run:
          name: RSpec
          command: bundle exec rspec
      - run:
          name: Rubocop
          command: rubocop
      - run:
          name: Coverage Test Report
          command: cc-test-reporter after-build --exit-code $?
      - run:
          name: Yardstick coverage check
          command: bundle exec rake verify_measurements
      - run:
          name: Check version documentation
          command: check_readme.sh
      - run:
          name: Rubycritcs check
          command: rubycritic.sh
      - run:
          name: Check unit tests
          command: check_specs

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
azeroth-0.3.0 .circleci/config.yml
azeroth-0.2.0 .circleci/config.yml
azeroth-0.1.0 .circleci/config.yml