diff --git a/.travis.yml b/.travis.yml index 6a94a82..7b574f9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,7 @@ branches: - master install: - "bundle install --retry 3 --jobs 8" +script: "bundle exec rake" gemfile: - gemfiles/rails5.0.gemfile - gemfiles/rails5.1.gemfile diff --git a/Rakefile b/Rakefile index 6623284..b2ef378 100644 --- a/Rakefile +++ b/Rakefile @@ -1,6 +1,7 @@ require "bundler/setup" require "cucumber/rake/task" require "rspec/core/rake_task" +require "standard/rake" Bundler::GemHelper.install_tasks name: "factory_bot_rails" @@ -11,5 +12,5 @@ end RSpec::Core::RakeTask.new(:spec) -desc "Run the test suite" -task default: %w[spec cucumber] +desc "Run the test suite and standard" +task default: %w[spec cucumber standard]