Sha256: 64e7a858e9af33619d145d8167ddaf1c8444e96a31349de6c663e63f491b1f61
Contents?: true
Size: 1.39 KB
Versions: 37
Compression:
Stored size: 1.39 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.4.1-node-browsers # Specify service dependencies here if necessary # CircleCI maintains a library of pre-built images # documented at https://circleci.com/docs/2.0/circleci-images/ # - image: circleci/postgres:9.4 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: | bundle install --jobs=4 --retry=3 --path .bundle - save_cache: paths: - ./venv key: v1-dependencies-{{ checksum "Gemfile.lock" }} # Database setup # - run: bundle exec rake db:create # - run: bundle exec rake db:schema:load # run tests! - run: name: run tests command: | bundle exec rake # collect reports - store_test_results: path: /tmp/rspec/ - store_artifacts: path: /tmp/rspec/ destination: test-results
Version data entries
37 entries across 37 versions & 2 rubygems