Sha256: 97ac854ffffadedaa55f79afcc3e6698c71f95c0a37b437537aa3c05a2467682

Contents?: true

Size: 762 Bytes

Versions: 2

Compression:

Stored size: 762 Bytes

Contents

version: 2.1
orbs:
  ruby: circleci/ruby@0.2.1

jobs:
  "rubocop":
    docker:
      - image: circleci/ruby:2.7
    steps:
      - checkout
      - ruby/load-cache
      - ruby/install-deps
      - run:
          name: Update bundler
          command: gem update bundler
      - run:
          name: Run Rubocop
          command: bundle exec rubocop
      - ruby/save-cache
  "rspec":
    docker:
      - image: circleci/ruby:2.7
    steps:
      - checkout
      - ruby/load-cache
      - ruby/install-deps
      - run:
          name: Update bundler
          command: gem update bundler
      - ruby/run-tests
      - ruby/save-cache
workflows:
  version: 2
  rubocop-rspec:
    jobs:
      - rubocop
      - rspec:
          requires:
            - rubocop

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
lex-tasker-0.2.1 .circleci/config.yml
lex-tasker-0.2.0 .circleci/config.yml