File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -15,18 +15,30 @@ install:
15
15
- bundle install
16
16
script : " bundle exec rake spec"
17
17
before_script : " rubocop"
18
- addons :
19
- srcclr : true
20
18
after_success : " coveralls"
21
19
22
20
# Integration tests need to run first to reset the PR build status to pending
23
21
stages :
22
+ - ' Lint markdown files'
24
23
- ' Integration tests'
25
24
- ' Benchmarking tests'
26
25
- ' Test'
27
26
28
27
jobs :
29
28
include :
29
+ - stage : ' Lint markdown files'
30
+ language : ruby
31
+ rvm : 2.4.1
32
+ os : linux
33
+ before_install : skip
34
+ install : gem install awesome_bot
35
+ before_script : skip
36
+ after_success : skip
37
+ script :
38
+ - find . -type f -name '*.md' -exec awesome_bot {} \;
39
+ notifications :
40
+ email : false
41
+
30
42
- &integrationtest
31
43
stage : ' Integration tests'
32
44
merge_mode : replace
42
54
after_success : travis_terminate 0
43
55
- << : *integrationtest
44
56
stage : ' Benchmarking tests'
57
+ addons :
58
+ srcclr : true
45
59
env : SDK=ruby FULLSTACK_TEST_REPO=Benchmarking SDK_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH
You can’t perform that action at this time.
0 commit comments