We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba381e7 commit 61fc300Copy full SHA for 61fc300
.travis.yml
@@ -6,13 +6,23 @@ env:
6
7
# Integration tests need to run first to reset the PR build status to pending
8
stages:
9
+ - name: 'Lint markdown files'
10
- name: 'Integration tests'
11
- name: 'Benchmarking tests'
12
- name: 'Unit Tests'
13
- name: 'NetStandard16'
14
15
jobs:
16
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
26
- &integrationtest
27
stage: 'Integration tests'
28
env: SDK=csharp SDK_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH
0 commit comments