Sha256: cf06edd7b3e98822b6b11b43c61718f730940c3bac190b317c9e9ce4b08dc926

Contents?: true

Size: 623 Bytes

Versions: 4

Compression:

Stored size: 623 Bytes

Contents

version: 2
jobs:
  test:
    docker:
      - image: circleci/ruby:2.5.5
    steps:
      - checkout
      - run:
          name: Bundle installation
          command: gem install bundler
      - run:
          name: Dependencies installation
          command: bundle check || bundle install
      - run:
          name: Check with rubocop
          command: bundle exec rubocop
      - run:
          name: Check with fasterer
          command: bundle exec fasterer
      - run:
          name: Check with rspec
          command: bundle exec rspec
workflows:
  version: 2
  build_and_test:
    jobs:
      - test
      

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
codebreaker_diz-0.2.2 .circleci/config.yml
codebreaker_diz-0.2.1 .circleci/config.yml
codebreaker_diz-0.2 .circleci/config.yml
codebreaker_diz-0.1.2 .circleci/config.yml