summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2014-05-14 13:26:13 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2014-05-14 13:26:13 -0700
commit80bd7ddda9e37dfe93df110aee8b76ae596184a5 (patch)
tree811fce41af5fa659e0ec3b416c2639806b4a7f06
parent6fa5b34dad219934944524af35904c8bd25f3a42 (diff)
downloadlibyajl2-gem-80bd7ddda9e37dfe93df110aee8b76ae596184a5.tar.gz
compile first on travis
reorder style to come last as well
-rw-r--r--Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index c979c8a..063dfb0 100644
--- a/Rakefile
+++ b/Rakefile
@@ -144,9 +144,9 @@ desc 'Run all style checks'
task :style => ['style:rubocop', 'style:reek']
desc 'Run style + spec tests by default on travis'
-task :travis => ['style', 'spec']
+task :travis => ['compile', 'spec', 'style']
desc 'Run style, spec and test kichen on travis'
-task :travis_all => ['style', 'spec', 'integration:cloud']
+task :travis_all => ['compile', 'spec', 'integration:cloud', 'style']
-task :default => ['style', 'spec', 'integration:vagrant']
+task :default => ['compile', 'spec', 'integration:vagrant', 'style']