mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
Run standard on CI
To ensure we run standard before merging any PR, this commit adds
standard to Travis CI (we have [travis configured to run the default rake
task][travis config]).
[travis config]: 4303e7d0d7/.travis.yml (L12)
This commit is contained in:
parent
5f1a1de114
commit
8f0c4afdf4
1 changed files with 3 additions and 2 deletions
5
Rakefile
5
Rakefile
|
@ -4,11 +4,12 @@ require "rake"
|
|||
require "yard"
|
||||
require "rspec/core/rake_task"
|
||||
require "cucumber/rake/task"
|
||||
require "standard/rake"
|
||||
|
||||
Bundler::GemHelper.install_tasks(name: "factory_bot")
|
||||
|
||||
desc "Default: run the specs and features."
|
||||
task default: %w[spec:unit spec:acceptance features]
|
||||
desc "Default: run the specs, features, and standard ."
|
||||
task default: %w[spec:unit spec:acceptance features standard]
|
||||
|
||||
namespace :spec do
|
||||
desc "Run unit specs"
|
||||
|
|
Loading…
Reference in a new issue