Sha256: 91b753cf88847c0ee3b260a18a6383655d23483ba0b4e979d31e2d74f94afaf2

Contents?: true

Size: 406 Bytes

Versions: 3

Compression:

Stored size: 406 Bytes

Contents

default:
  image: "ruby:${RUBY_VERSION}"

cache:
  key: "${CI_JOB_IMAGE}"
  paths:
    - vendor/ruby

before_script:
  - ruby -v
  - gem update --system --no-document
  - bundle install -j $(nproc) --path vendor

test:
  script:
    - bundle exec rspec
  parallel:
    matrix:
      - RUBY_VERSION: [ "3.0", "3.1", "3.2" ]

rubocop:
  script:
    - bundle exec rubocop
  variables:
    RUBY_VERSION: "3.0"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gitlab-license-2.6.0 .gitlab-ci.yml
gitlab-license-2.5.0 .gitlab-ci.yml
gitlab-license-2.4.0 .gitlab-ci.yml