Advertisement
Guest User

gitlab-ci.yml

a guest
Nov 6th, 2020
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 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. tags:
  11. - ntiunifacisa
  12.  
  13. rspec:
  14. script:
  15. - bundle exec rspec
  16. tags:
  17. - ntiunifacisa
  18.  
  19. rubocop:
  20. script:
  21. - bundle exec rubocop
  22. tags:
  23. - ntiunifacisa
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement