Sha256: 83ed3a0ad14d96223461f0caa4a43545d48a8f8812869bb6c3ed6d93c95c4d81
Contents?: true
Size: 644 Bytes
Versions: 12
Compression:
Stored size: 644 Bytes
Contents
version: 2.1 # Use 2.1 to enable using orbs and other features. # Declare the orbs that we'll use in our config. orbs: ruby: circleci/ruby@1.0 jobs: rubocop: parallelism: 1 docker: - image: cimg/ruby:2.7-node steps: - checkout - ruby/install-deps - run: name: Run Rubocop command: bundle exec rubocop test: parallelism: 1 docker: - image: cimg/ruby:2.7-node steps: - checkout - ruby/install-deps - run: name: Run tests command: bundle exec rspec -fd workflows: version: 2 checks: jobs: - rubocop - test
Version data entries
12 entries across 12 versions & 1 rubygems