Sha256: 1a19ce30228717e0b2fb10117dede083c2f0f40404bc516a831b41ffa3e0cbbd

Contents?: true

Size: 1.04 KB

Versions: 62

Compression:

Stored size: 1.04 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.5

    working_directory: ~/repo

    steps:
      - checkout

      # Download and cache dependencies
      - restore_cache:
          keys:
          - v1-dependencies-{{ checksum "Gemfile" }}
          # fallback to using the latest cache if no exact match is found
          - v1-dependencies-

      - run:
          name: install dependencies
          command: bundle check || bundle install --jobs=4 --retry=3 --path vendor/bundle

      - save_cache:
          paths:
            - ./vendor
          key: v1-dependencies-{{ checksum "Gemfile" }}

      # run tests!
      - run:
          name: run tests
          command: bundle exec rake

      # collect reports
      - store_test_results:
          path: ~/repo/test-results
      - store_artifacts:
          path: ~/repo/test-results
          destination: test-results

Version data entries

62 entries across 62 versions & 4 rubygems

Version Path
fastlane-2.225.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.224.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.223.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.223.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.222.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.221.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.221.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.220.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.219.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.218.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-security-patched-2.216.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.217.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.216.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.215.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.215.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-mercafacil-2.214.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.214.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.213.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.212.2 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane_pricing_fix-2.212.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml