Sha256: fc4a6311936df421b22fd029874a15513448e1adf1afd0701a64f92e0c2806fb
Contents?: true
Size: 764 Bytes
Versions: 6
Compression:
Stored size: 764 Bytes
Contents
version: 2 jobs: build: docker: - image: circleci/ruby:2.6 steps: - checkout - run: name: Bundle Install command: | gem install bundler && \ bundle check || bundle install - run: name: Run rspec in parallel command: | bundle exec rspec --profile 10 \ --format RspecJunitFormatter \ --out test_results/rspec.xml \ --format progress \ $(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings) - store_test_results: path: test_results workflows: version: 2 build: jobs: - build
Version data entries
6 entries across 6 versions & 1 rubygems