before_script: - gem install bundler --no-document -v '~> 2.3.11' - bundle install --jobs="$(nproc)" --retry=3 build:rubocop: stage: build image: "ruby:3.1" script: - bundle exec rubocop test:ruby-2.7: stage: test image: "ruby:2.7" script: - bundle exec rake test test:ruby-3.0: stage: test image: "ruby:3.0" script: - bundle exec rake test test:ruby-3.1: stage: test image: "ruby:3.1" script: - bundle exec rake test