Sha256: c53d4204abfcd978d35a6f0fdc248bb57ed178dc97c458cef40b211d0de09a54
Contents?: true
Size: 1.09 KB
Versions: 3
Compression:
Stored size: 1.09 KB
Contents
# Ruby CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-ruby/ for more details # version: 2 jobs: build: docker: # specify the version you desire here - image: circleci/ruby:2.6.0 environment: MINITEST_ENV: ci working_directory: ~/umwelt 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: Bundle install command: | bundle install --jobs=4 --retry=3 --path vendor/bundle - save_cache: paths: - ./vendor/bundle key: v1-dependencies-{{ checksum "Gemfile.lock" }} # run tests! - run: name: Run tests command: bundle exec rake # collect reports # - store_test_results: # path: ./test/reports - store_artifacts: path: ./test/html_reports destination: reports
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
umwelt-0.2 | .circleci/config.yml |
umwelt-0.1.1 | .circleci/config.yml |
umwelt-0.1.0 | .circleci/config.yml |