Sha256: 392e595995d0b1ffe3aa42fb264480f5b8f734e165fb6bdfb512ee40863c68f6
Contents?: true
Size: 1.21 KB
Versions: 18
Compression:
Stored size: 1.21 KB
Contents
version: 2 jobs: build: working_directory: ~/circleci-narou docker: - image: circleci/ruby:2.5 environment: BUNDLE_JOBS: 1 BUNDLE_RETRY: 3 BUNDLE_PATH: vendor/bundle steps: - checkout - run: name: Which bundler? command: bundle -v # Restore bundle cache - restore_cache: keys: - narou-bundle-{{ checksum "Gemfile.lock" }} - narou-bundle- - run: name: Bundle Install command: bundle check || bundle install # Store bundle cache - save_cache: key: narou-bundle-{{ checksum "Gemfile.lock" }} paths: - vendor/bundle - run: name: Run rspec command: | bundle exec rspec \ --format RspecJunitFormatter \ --out test_results/rspec/results.xml \ --format progress \ $(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings) # Save test results for timing analysis - store_test_results: path: test_results - store_artifacts: path: ./coverage destination: artifact-file
Version data entries
18 entries across 18 versions & 1 rubygems