Sha256: 6bc4f2767d8d30677d91f72f6bb15db3cc4cb23cfb54e88ac31165385811a0f3
Contents?: true
Size: 689 Bytes
Versions: 8
Compression:
Stored size: 689 Bytes
Contents
version: 2.1 orbs: ruby: circleci/ruby@1.0.0 jobs: build: docker: - image: circleci/ruby:2.7.2 steps: - checkout - ruby/install-deps minitest: docker: - image: circleci/ruby:2.7.2 environment: BUNDLE_JOBS: 3 BUNDLE_RETRY: 3 BUNDLE_PATH: vendor/bundle steps: - checkout - ruby/install-deps - run: name: Stale code fix command: git fetch && git reset --hard origin/${CIRCLE_BRANCH} - run: name: Minitest command: bundle exec rake test workflows: tests: jobs: - build - minitest: requires: - build
Version data entries
8 entries across 8 versions & 2 rubygems