Sha256: 05f86cdef89c0f8161f372094f5cb8ae81e5b13097e20c3edd72fde52d8d4ada
Contents?: true
Size: 891 Bytes
Versions: 3
Compression:
Stored size: 891 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 rake metrics:mutant workflows: version: 2 test: jobs: - unit_specs - integration_specs - metrics - mutant
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
unparser-0.4.2 | .circleci/config.yml |
unparser-0.4.1 | .circleci/config.yml |
unparser-0.4.0 | .circleci/config.yml |