language: ruby
rvm:
  # - ruby-head
  - 2.6.3
  - 2.5.5
branches:
  only: master
before_install: bin/ci-install
script:
  - yarn test
  - yarn lint
  - yarn print --check '**/*'
  - bundle exec rake test
cache:
  - bundler
  - yarn
# matrix:
#   allow_failures:
#     - rvm: ruby-head
