Skip to content

Commit 870bf2a

Browse files
Run standard on CI
To ensure we run standard before merging any PR, this commit adds standard to Travis CI
1 parent ce8bfb4 commit 870bf2a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ branches:
1212
- master
1313
install:
1414
- "bundle install --retry 3 --jobs 8"
15+
script: "bundle exec rake"
1516
gemfile:
1617
- gemfiles/rails5.0.gemfile
1718
- gemfiles/rails5.1.gemfile

Rakefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
require "bundler/setup"
22
require "cucumber/rake/task"
33
require "rspec/core/rake_task"
4+
require "standard/rake"
45

56
Bundler::GemHelper.install_tasks name: "factory_bot_rails"
67

@@ -11,5 +12,5 @@ end
1112

1213
RSpec::Core::RakeTask.new(:spec)
1314

14-
desc "Run the test suite"
15-
task default: %w[spec cucumber]
15+
desc "Run the test suite and standard"
16+
task default: %w[spec cucumber standard]

0 commit comments

Comments
 (0)