Sha256: 9f1b3430921281ee4f4e25f4b7cc40ec3d203c5b7c9a947d7e83ddb4d7d660f0

Contents?: true

Size: 941 Bytes

Versions: 1

Compression:

Stored size: 941 Bytes

Contents

.ruby: &ruby
  variables:
    LANG: "C.UTF-8"
  before_script:
    - ruby -v                                   # Print out ruby version for debugging
    - gem install bundler  --no-document        # Bundler is not installed with the image
    - bundle config set --local path 'vendor'
    - bundle install -j $(nproc)                # Install dependencies into ./vendor/ruby
  parallel:
    matrix:
      - RUBY_VERSION: ['2.7', '3.0']
  image: "ruby:$RUBY_VERSION"
  cache:
    paths:
      - vendor/ruby
    key: 'ruby$RUBY_VERSION'

rspec:
  extends: .ruby
  script:
    - bundle exec rake spec
  artifacts:
    reports:
      junit: rspec.xml
      cobertura: coverage/coverage.xml

rubocop:
  extends: .ruby
  script:
    - bundle exec rake rubocop

include:
  - template: SAST.gitlab-ci.yml
  - template: Dependency-Scanning.gitlab-ci.yml
  - template: Security/License-Scanning.gitlab-ci.yml
  - template: Code-Quality.gitlab-ci.yml

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tanuki_emoji-0.1.0 .gitlab-ci.yml