Sha256: eb219706139775443b8d1881f68581c258a259e6d7def9be4f6f2cca82a847d7
Contents?: true
Size: 1.04 KB
Versions: 6
Compression:
Stored size: 1.04 KB
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-5": docker: - image: circleci/ruby:2.5 steps: - checkout - ruby/install-deps - <<: *unit "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-5" - "ruby-2-6" - "ruby-2-7" - "ruby-3-0" - "lint"
Version data entries
6 entries across 6 versions & 1 rubygems