Sha256: f53cc188e0bbbf66eeaeae9346fb430a7f3f2052e2d9a3705eb91282786f69be
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
version: 2.1 jobs: rake_default: parameters: image: description: "Name of the Docker image." type: string default: "circleci/ruby" docker: - image: << parameters.image >> environment: # CircleCI container has two cores, but Ruby can see 32 cores. So we # configure test-queue. # See https://github.com/tmm1/test-queue#environment-variables TEST_QUEUE_WORKERS: 2 JRUBY_OPTS: "--dev -J-Xmx1000M" steps: - checkout - run: bundle install - run: bundle exec rake workflows: build: jobs: - rake_default: name: Ruby 2.7 image: cimg/ruby:2.7 - rake_default: name: Ruby 3.0 image: cimg/ruby:3.0 - rake_default: name: Ruby 3.1 image: cimg/ruby:3.1 - rake_default: name: Ruby 3.2 image: cimg/ruby:3.2 - rake_default: name: Ruby 3.3 image: cimg/ruby:3.3 - rake_default: name: Ruby HEAD image: rubocophq/circleci-ruby-snapshot:latest # Nightly snapshot build
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubocop-faker-1.2.0 | .circleci/config.yml |