Sha256: 6562717335381011573004a6b0fea5de8f494cbe4dee1d45fab77cff9b4bf44d
Contents?: true
Size: 897 Bytes
Versions: 3
Compression:
Stored size: 897 Bytes
Contents
# See https://circleci.com/docs/2.0/language-ruby/ for more details version: 2.1 orbs: ruby: circleci/ruby@2.0.1 jobs: checks: parallelism: 1 resource_class: small docker: - image: cimg/ruby:3.3.2 steps: - checkout - ruby/install-deps: key: gems-v1 include-branch-in-cache-key: false # - ruby/rubocop-check - run: name: RSpec Tests command: |- bundle exec rspec --format RspecJunitFormatter \ --out /tmp/test-results/rspec/results.xml --format progress # actually not necessary for test results to be collected, but these files # won't show up in the web UI otherwise - store_artifacts: path: /tmp/rspec/ destination: rspec - store_test_results: path: /tmp/rspec/ workflows: version: 2 checks: jobs: - checks
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
nxt_cop-2.6.0 | .circleci/config.yml |
nxt_cop-2.5.1 | .circleci/config.yml |
nxt_cop-2.5.0 | .circleci/config.yml |