Sha256: 76396b896c8ee18027daf10f93a80b48c435602a7be42d9e33891ce5ba50287a
Contents?: true
Size: 703 Bytes
Versions: 18
Compression:
Stored size: 703 Bytes
Contents
version: 2.1 orbs: # https://github.com/CircleCI-Public/ruby-orb ruby: circleci/ruby@1.1 jobs: test: parameters: ruby-version: type: string docker: - image: cimg/ruby:<< parameters.ruby-version >> steps: - checkout - run: bundle install --path vendor/bundle --jobs=4 - run: bundle exec rubocop - run: bundle exec rake test # https://circleci.com/blog/circleci-matrix-jobs/ workflows: build_and_test: jobs: - test: matrix: parameters: # https://github.com/CircleCI-Public/cimg-ruby # only supports the last three ruby versions ruby-version: ["2.5", "2.6", "2.7"]
Version data entries
18 entries across 18 versions & 1 rubygems