Sha256: 79b5ab8eb3545339580ffc803f11fb66c0d6a87edc651c3714931300cef57c22
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
version: 2 jobs: build: docker: # specify the version you desire here - image: circleci/ruby:2.6.0-node-browsers working_directory: ~/repo steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "Gemfile.lock" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: name: install dependencies command: ./bin/setup - save_cache: paths: - ./vendor/bundle key: v1-dependencies-{{ checksum "Gemfile.lock" }} # run tests! - run: name: run tests command: | mkdir /tmp/test-results TEST_FILES="$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)" bundle exec rspec --format progress $TEST_FILES # collect reports - store_test_results: path: /tmp/test-results - store_artifacts: path: /tmp/test-results destination: test-results
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
billy_api-0.1.1 | .circleci/config.yml |