1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-12 01:27:53 +08:00
2022-11-02 00:34:34 +08:00

12 lines
145 B
Ruby
Vendored

#!/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