Sha256: ab0f496a0faa8f2dd8b83d9a66ca80e7af1ef02955818f7b467ec7d490ff4eb6

Contents?: true

Size: 897 Bytes

Versions: 1

Compression:

Stored size: 897 Bytes

Contents

# See https://circleci.com/docs/2.0/language-ruby/ for more details

version: 2.1

orbs:
  ruby: circleci/ruby@2.0.0

jobs:
  rubocop:
    docker:
      - image: "cimg/ruby:3.3.6"
    resource_class: small
    environment:
      BUNDLE_JOBS: "3"
      BUNDLE_RETRY: "3"
    steps:
      - checkout
      - ruby/install-deps:
          key: gems-v1
          include-branch-in-cache-key: false
      - run: bundle exec rubocop

  rspec:
    parallelism: 1
    resource_class: small
    docker:
      - image: cimg/ruby:3.3.3
    steps:
      - checkout
      - ruby/install-deps:
          include-branch-in-cache-key: false
      - run:
          name: RSpec Tests
          command: |-
            bundle exec rspec --format RspecJunitFormatter \
              --out /tmp/test-results/rspec/results.xml --format progress

workflows:
  version: 2
  checks:
    jobs:
      - rubocop
      - rspec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nxt_error_registry-0.3.0 .circleci/config.yml