Sha256: cae42f0eef1fd6c5eca22fe748ee09f7fefff369c0093af02891cc0ffe580582

Contents?: true

Size: 997 Bytes

Versions: 1

Compression:

Stored size: 997 Bytes

Contents

version: 2
jobs: 
  build:
    docker: 
      - image: circleci/ruby:2.6.5
        environment:
          CC_TEST_REPORTER_ID: '1bc997946c470551ec0f384e37c5646f12d924d9ab98251809a7d6baf5154445'
    steps: 
      - checkout

      - 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: install bundler
          command: gem install bundler

      - run:
          name: install gems
          command: bundle install

      - run:
          name: compile
          command: rake compile

      - run:
          name: before-build
          command: ./cc-test-reporter before-build

      - run:
          name: test
          command: rake test

      - run:
          name: after-build
          command: ./cc-test-reporter after-build --coverage-input-type simplecov --exit-code $?

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tatara-0.3.0 .circleci/config.yml