Sha256: 43d486e180add63381cc80875c165872b2f2956f80a3bedad14ea379a0fd55d4

Contents?: true

Size: 916 Bytes

Versions: 2

Compression:

Stored size: 916 Bytes

Contents

version: 2.1
orbs:
  ruby: circleci/ruby@1.1.2
references:
  unit: &unit
    run:
      name: Run test suite
      command: bundle exec rspec spec/

  lint: &lint
    run:
      name: Run linter, fix with `standardrb --fix` locally
      command: bundle exec standardrb

jobs:
  "ruby-2-6":
    docker:
      - image: circleci/ruby:2.6
    steps:
      - checkout
      - ruby/install-deps
      - <<: *unit

  "ruby-2-7":
    docker:
      - image: circleci/ruby:2.7
    steps:
      - checkout
      - ruby/install-deps
      - <<: *unit

  "ruby-3-0":
    docker:
      - image: circleci/ruby:3.0
    steps:
      - checkout
      - ruby/install-deps
      - <<: *unit

  "lint":
    docker:
      - image: circleci/ruby:3.0
    steps:
      - checkout
      - ruby/install-deps
      - <<: *lint

workflows:
  version: 2
  build:
    jobs:
      - "ruby-2-6"
      - "ruby-2-7"
      - "ruby-3-0"
      - "lint"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dead_end-2.0.0 .circleci/config.yml
dead_end-1.2.0 .circleci/config.yml