Skip to content

Commit 61fc300

Browse files
ci(travis): adds awesome_bot for linting *.md files (#205)
1 parent ba381e7 commit 61fc300

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,23 @@ env:
66

77
# Integration tests need to run first to reset the PR build status to pending
88
stages:
9+
- name: 'Lint markdown files'
910
- name: 'Integration tests'
1011
- name: 'Benchmarking tests'
1112
- name: 'Unit Tests'
1213
- name: 'NetStandard16'
1314

1415
jobs:
1516
include:
17+
- stage: 'Lint markdown files'
18+
language: ruby
19+
rvm: 2.4.1
20+
os: linux
21+
install: gem install awesome_bot
22+
script:
23+
- find . -type f -name '*.md' -exec awesome_bot {} \;
24+
notifications:
25+
email: false
1626
- &integrationtest
1727
stage: 'Integration tests'
1828
env: SDK=csharp SDK_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH

0 commit comments

Comments
 (0)