mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-go/Rakefile

14 lines
219 B
Ruby
Raw Normal View History

2016-04-12 04:31:09 -04:00
#!/usr/bin/env rake
task :ci => [:dump, :test]
task :dump do
sh 'vim --version'
end
# Firstly, `bundle install; bundle install --deployment`
# Then, `rake test`
task :test do
sh 'bundle exec vim-flavor test'
end