Sha256: e3121828834fff8542c60a80dd16a2b673abaed21c24f2f3ab2a3b848f0b7a61
Contents?: true
Size: 620 Bytes
Versions: 1
Compression:
Stored size: 620 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.3 working_directory: ~/repo steps: - checkout - run: bundle install --jobs=4 --retry=3 --path vendor/bundle - run: bundle exec bundle-audit update && bundle exec bundle-audit check - run: bundle exec rubocop --config=default.yml - run: name: Check default.yml for warnings command: "! bundle exec rubocop --config=default.yml 2>&1 | grep 'Warning:'" - run: bundle exec rspec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ws-style-0.4.0 | .circleci/config.yml |