phaedryx/arrangement

View on GitHub
.circleci/config.yml

Summary

Maintainability
Test Coverage
version: 2.1
orbs:
  ruby: circleci/ruby@1.0

jobs:
  build:
    docker:
      - image: circleci/ruby:2.6.3-stretch-node
    steps:
      - checkout
      - ruby/install-deps

  test:
    docker:
      - image: circleci/ruby:2.6.3-stretch-node
    steps:
      - checkout
      - ruby/install-deps
      - run:
          name: run rubocop
          command: bundle exec rubocop
      - run:
          name: run tests
          command: bundle exec rake test

workflows:
  version: 1
  build_and_test:
    jobs:
      - build
      - test:
          requires:
            - build