Sha256: 7c67d986853fc86502fa61dc24927930a98c51429285e9959027380e846d8d35

Contents?: true

Size: 924 Bytes

Versions: 1

Compression:

Stored size: 924 Bytes

Contents

defaults: &defaults
  working_directory: ~/unparser
  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_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 origin/master --zombie -- 'Unparser*'
workflows:
  version: 2
  test:
    jobs:
      - unit_specs
      - integration_specs
      - metrics
      - mutant

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
unparser-0.4.3 .circleci/config.yml