Guest User

Untitled

a guest
Oct 15th, 2020
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. default:
  2. image: ruby:2.5
  3. before_script:
  4. - apt-get update
  5. - apt-get install -y sqlite3 libsqlite3-dev nodejs
  6. - ruby -v
  7. - which ruby
  8. - gem install bundler --no-document
  9. - bundle install --jobs $(nproc) "${FLAGS[@]}"
  10.  
  11. rspec:
  12. script:
  13. - bundle exec rspec
  14.  
  15. rubocop:
  16. script:
  17. - bundle exec rubocop
  18.  
Add Comment
Please, Sign In to add comment