Sha256: 073a37c8cb3cef05f4d6c118d5df91bebbb0f36aefdf1ff0dce8fa7b5d6e2647

Contents?: true

Size: 523 Bytes

Versions: 1

Compression:

Stored size: 523 Bytes

Contents

variables:
  RUNNING_ON_CI_SERVER: 1

cache:
  key: "$CI_BUILD_REF_NAME"
  paths:
    - /cache

before_script:
  # System
  - apt-get update -qq

  # Ruby
  - ruby -v
  - which ruby

  # Ruby Gems
  - 'echo ''gem: --no-ri --no-rdoc'' > ~/.gemrc'
  - gem install bundler
  - bundle install --path=/cache --without production --jobs $(nproc) "${FLAGS[@]}"

rspec:
  script:
    - bundle exec rspec --color --require spec_helper --format progress --no-profile

rubocop:
  script:
    - bundle exec rubocop --display-cop-names

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stable-matching-0.1.0 .gitlab-ci.yml