.gitlab-ci.yml in asciidoctor-defmastership-1.0.7 vs .gitlab-ci.yml in asciidoctor-defmastership-1.0.8
- old
+ new
@@ -1,31 +1,42 @@
default:
- image: ruby:3.2
+ image: ruby:3.3
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
+ - bundle exec rake test:spec
rubocop:
script:
- - bundle exec rake rubocop
+ - bundle exec rake quality:rubocop
unit tests ruby2.7:
image: ruby:2.7
+ before_script:
+ - apt-get update
+ - ruby -v
+ - which ruby
+ - gem install bundler -v 2.4.22 --no-document
+ - bundle install --jobs $(nproc) "${FLAGS[@]}"
script:
- - bundle exec rake spec
+ - bundle exec rake test:spec
unit tests ruby3.0:
image: ruby:3.0
script:
- - bundle exec rake spec
+ - bundle exec rake test:spec
unit tests ruby3.1:
image: ruby:3.1
script:
- - bundle exec rake spec
+ - bundle exec rake test:spec
+
+unit tests ruby3.2:
+ image: ruby:3.2
+ script:
+ - bundle exec rake test:spec