.gitlab-ci.yml in defmastership-1.0.17 vs .gitlab-ci.yml in defmastership-1.0.18

- old
+ new

@@ -7,45 +7,57 @@ - gem install bundler --no-document - bundle install --jobs $(nproc) "${FLAGS[@]}" bdd: script: - - bundle exec rake features + - bundle exec rake test:features unit tests: script: - - bundle exec rake spec + - bundle exec rake test:spec -rubocop: +code_quality: script: - - bundle exec rake rubocop + - bundle exec rake quality:all bdd 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 features + - bundle exec rake test:features bdd ruby3.0: image: ruby:3.0 script: - - bundle exec rake features + - bundle exec rake test:features bdd ruby3.1: image: ruby:3.1 script: - - bundle exec rake features + - bundle exec rake test:features 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