Sha256: 86f96e60ffb47555e1f546c50a9014a5616b9baa0278cd903803d952d8d30d7e
Contents?: true
Size: 1.09 KB
Versions: 40
Compression:
Stored size: 1.09 KB
Contents
version: 2.1 jobs: build: docker: - image: circleci/ruby:2.7.1 environment: CC_TEST_REPORTER_ID: 859fcfe88b00c026d15dce30e838e2299face8088b49fe62bc3a02d1507ce3d5 RAILS_ENV: test steps: - checkout - run: name: Install Bundler command: gem install bundler - run: name: Which bundler? command: bundle -v - run: name: Bundle Install command: bundle check || bundle install - run: name: Lint using rubocop command: bundle exec rubocop - 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 ./cc-test-reporter before-build - run: name: rspec command: bundle exec rspec - run: name: upload test coverage report to Code Climate command: ./cc-test-reporter after-build --coverage-input-type simplecov --exit-code $?
Version data entries
40 entries across 40 versions & 1 rubygems