mirror of
https://github.com/github/choosealicense.com
synced 2024-12-21 20:30:10 +01:00
7 lines
109 B
Ruby
7 lines
109 B
Ruby
require "html/proofer"
|
|
|
|
task :test do
|
|
sh "bundle exec jekyll build"
|
|
HTML::Proofer.new("./_site").run
|
|
end
|