Sha256: 88f8201b2430116844fecd63ebc272a7efd2d2d977750207890e53aa495cfe37

Contents?: true

Size: 1.18 KB

Versions: 4

Compression:

Stored size: 1.18 KB

Contents

defaults: &defaults
  working_directory: ~/mutant
  docker:
    - image: circleci/ruby:2.5.3
version: 2
jobs:
  unit_specs:
    <<: *defaults
    steps:
      - checkout
      - run: bundle install
      - run: bundle exec rspec spec/unit
  integration_minitest:
    <<: *defaults
    steps:
      - checkout
      - run: bundle install
      - run: bundle exec rspec spec/integration -e minitest
  integration_rspec:
    <<: *defaults
    steps:
      - checkout
      - run: bundle install
      - run: bundle exec rspec spec/integration -e rspec
  integration_mutation_generation:
    <<: *defaults
    steps:
      - checkout
      - run: bundle install
      - run: bundle exec rspec spec/integration -e generation
  metrics:
    <<: *defaults
    steps:
      - checkout
      - run: bundle install
      - run: bundle exec rake metrics:rubocop
      - run: bundle exec rake metrics:reek
  mutant:
    <<: *defaults
    steps:
      - checkout
      - run: bundle install
      - run: bundle exec rake metrics:mutant
workflows:
  version: 2
  test:
    jobs:
      - unit_specs
      - integration_rspec
      - integration_minitest
      - integration_mutation_generation
      - metrics
      - mutant

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mutant-0.8.24 .circleci/config.yml
mutant-0.8.23 .circleci/config.yml
mutant-0.8.22 .circleci/config.yml
mutant-0.8.21 .circleci/config.yml