Sha256: b188fa5d7d8b7249d34028f4b98aeed3093e894c4fb423949c27464115b914f6

Contents?: true

Size: 1009 Bytes

Versions: 1

Compression:

Stored size: 1009 Bytes

Contents

# Ruby CircleCI 2.1 configuration file
#
# Check https://circleci.com/docs/2.0/ruby/ for more details
#
version: 2.1

orbs:
  ruby: circleci/ruby@0.1.2

jobs:
  build:
    docker:
      - image: circleci/ruby:2.6.3-stretch-node

    steps:
      - checkout
      - run: # bump bundler version
          name: install dependencies
          command: |
            gem update --system
            gem install bundler
      - run:
          name: Which bundler?
          command: bundle -v
      - ruby/bundle-install

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

      - run:
          name: run tests
          command: |
            ./cc-test-reporter before-build
            bundle exec rake
            ./cc-test-reporter after-build -t simplecov

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
compact-0.1.1 .circleci/config.yml