default: image: ruby:3.3 before_script: - apt-get update - ruby -v - which ruby - gem install bundler --no-document - bundle install --jobs $(nproc) "${FLAGS[@]}" - git config --global user.email "you@example.com" - git config --global user.name "Your Name" bdd: script: - bundle exec rake test:features unit tests: script: - bundle exec rake test:spec code_quality: script: - 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[@]}" - git config --global user.email "you@example.com" - git config --global user.name "Your Name" script: - bundle exec rake test:features bdd ruby3.0: image: ruby:3.0 script: - bundle exec rake test:features bdd ruby3.1: image: ruby:3.1 script: - bundle exec rake test:features bdd ruby3.2: image: ruby:3.2 script: - 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 test:spec unit tests ruby3.0: image: ruby:3.0 script: - bundle exec rake test:spec unit tests ruby3.1: image: ruby:3.1 script: - bundle exec rake test:spec unit tests ruby3.2: image: ruby:3.2 script: - bundle exec rake test:spec