Sha256: 47d5a86151f55841e9fd299edbe4c306d80d6a21e28e23fcc41c015589533379

Contents?: true

Size: 520 Bytes

Versions: 2

Compression:

Stored size: 520 Bytes

Contents

default:
  image: ruby:3.2
  before_script:
    - apt-get update
    - ruby -v
    - which ruby
    - gem install bundler --no-document
    - bundle install --jobs $(nproc) "${FLAGS[@]}"

unit tests:
  script:
    - bundle exec rake spec

rubocop:
  script:
    - bundle exec rake rubocop

unit tests ruby2.7:
  image: ruby:2.7
  script:
    - bundle exec rake spec

unit tests ruby3.0:
  image: ruby:3.0
  script:
    - bundle exec rake spec

unit tests ruby3.1:
  image: ruby:3.1
  script:
    - bundle exec rake spec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
asciidoctor-defmastership-1.0.7 .gitlab-ci.yml
asciidoctor-defmastership-1.0.6 .gitlab-ci.yml