Sha256: 0c1e27b8365579db3fd9d8e05c9808d627785586f2e0baede74f0808fdd70b17

Contents?: true

Size: 906 Bytes

Versions: 3

Compression:

Stored size: 906 Bytes

Contents

defaults: &defaults
  working_directory: ~/mutant
  docker:
    - image: circleci/ruby:2.6.0
version: 2
jobs:
  unit_specs:
    <<: *defaults
    steps:
      - checkout
      - run: bundle install
      - run: bundle exec rspec spec/unit
  integration_specs:
    <<: *defaults
    steps:
      - checkout
      - run: bundle install
      - run: bundle exec rspec spec/integration
  metrics:
    <<: *defaults
    steps:
      - checkout
      - run: bundle install
      - run: bundle exec rake metrics:rubocop
      - run: bundle exec rake metrics:reek
      - run: bundle exec rake metrics:flay
      - run: bundle exec rake metrics:flog
  mutant:
    <<: *defaults
    steps:
      - checkout
      - run: bundle install
      - run: bundle exec mutant --since HEAD~1 -- 'Devtools*'
workflows:
  version: 2
  test:
    jobs:
      - unit_specs
      - integration_specs
      - metrics
      - mutant

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
devtools-0.1.26 .circleci/config.yml
devtools-0.1.25 .circleci/config.yml
devtools-0.1.24 .circleci/config.yml