main
 1image: ruby:2.6
 2
 3before_script:
 4  - apt-get update && apt-get install -y locales
 5  - echo "en_US.UTF-8 UTF-8" > /etc/locale.gen
 6  - locale-gen
 7  - export LC_ALL=en_US.UTF-8
 8  - ruby -v
 9  - which ruby
10  - gem install bundler
11  - bundle install --jobs $(nproc) "${FLAGS[@]}"
12
13rspec:
14  script:
15    - bundle exec rspec