Sha256: dff17e1ed358f7e4a520c96c4f417ce3cd73797020e1af504181b70a7aa09a3a
Contents?: true
Size: 870 Bytes
Versions: 4
Compression:
Stored size: 870 Bytes
Contents
# Ruby CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-ruby/ for more details # version: 2 jobs: build: docker: - image: circleci/ruby:2.5.1-node-browsers working_directory: ~/repo steps: - checkout - run: name: install dependencies working_directory: ~/repo command: | bundle install --jobs=4 --retry=3 --path vendor/bundle - run: name: run tests working_directory: ~/repo command: | bundle exec rspec - run: name: run rubocop working_directory: ~/repo command: | bundle exec rubocop - run: name: report coverage working_directory: ~/repo command: | bash <(curl -s https://codecov.io/bash) -f coverage/.resultset.json
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
jsrb-0.3.0 | .circleci/config.yml |
jsrb-0.2.1 | .circleci/config.yml |
jsrb-0.2.0 | .circleci/config.yml |
jsrb-0.1.0 | .circleci/config.yml |