mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 10:20:05 +08:00
14 lines
166 B
Ruby
14 lines
166 B
Ruby
|
#!/usr/bin/env rake
|
||
|
|
||
|
task :ci => [:dump, :test]
|
||
|
|
||
|
task :dump do
|
||
|
sh 'vim --version'
|
||
|
end
|
||
|
|
||
|
task :test do
|
||
|
sh 'bundle exec vim-flavor test'
|
||
|
end
|
||
|
|
||
|
task :default => :test
|