Sha256: 964448add204d9f7047514a7ae26fea6a41c7ef86408906614a6f55c87d0b7bb

Contents?: true

Size: 1.34 KB

Versions: 18

Compression:

Stored size: 1.34 KB

Contents

version: 2
jobs:
  build:
    docker:
      - image: circleci/ruby:2.5.1-node
        environment:
          RAILS_ENV: test

    working_directory: ~/repo

    steps:
      - checkout

      - 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 --deployment --jobs 4 --retry 3

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

      - run:
          name: Setup Code Climate test-reporter
          command: |
            curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
            chmod +x ./cc-test-reporter

      - run:
          name: RSpec
          command: |
            mkdir results
            bundle exec rspec spec --order random --profile --format documentation --format RspecJunitFormatter --out results/rspec.xml
            ./cc-test-reporter format-coverage -t simplecov coverage/.resultset.json
            ./cc-test-reporter upload-coverage

      - store_test_results:
          path: results
      - store_artifacts:
          path: results
      - store_artifacts:
          path: coverage

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
traxor-0.2.0 .circleci/config.yml
traxor-0.1.20 .circleci/config.yml
traxor-0.1.19 .circleci/config.yml
traxor-0.1.18 .circleci/config.yml
traxor-0.1.13 .circleci/config.yml
traxor-0.1.12 .circleci/config.yml
traxor-0.1.11 .circleci/config.yml
traxor-0.1.10 .circleci/config.yml
traxor-0.1.9 .circleci/config.yml
traxor-0.1.8 .circleci/config.yml
traxor-0.1.7 .circleci/config.yml
traxor-0.1.6 .circleci/config.yml
traxor-0.1.5 .circleci/config.yml
traxor-0.1.4 .circleci/config.yml
traxor-0.1.3 .circleci/config.yml
traxor-0.1.2 .circleci/config.yml
traxor-0.1.1 .circleci/config.yml
traxor-0.1.0 .circleci/config.yml