Sha256: f7dacf624b8b68ee654af716375a6b2a99daa5e5ed46a5d00c495462b1bcf6e4
Contents?: true
Size: 1.09 KB
Versions: 3
Compression:
Stored size: 1.09 KB
Contents
version: 2.1 jobs: build: docker: - image: circleci/ruby:2.7.1 environment: CC_TEST_REPORTER_ID: 3853bc688a88a4de1a5568eaa8163d20db8637fe988540a935aff028190cff6a 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dor-workflow-client-3.24.0 | .circleci/config.yml |
dor-workflow-client-3.23.1 | .circleci/config.yml |
dor-workflow-client-3.23.0 | .circleci/config.yml |