Rake task for CI that includes a bundle install
This commit is contained in:
parent
03a0031ddd
commit
c0bf7ab5cd
1 changed files with 5 additions and 0 deletions
5
lib/tasks/ci.rake
Normal file
5
lib/tasks/ci.rake
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
desc "Run all specs and features"
|
||||
task :ci => [:environment] do
|
||||
system "bundle install"
|
||||
system "bundle exec rake"
|
||||
end
|
||||
Loading…
Reference in a new issue