...
1language: go
2sudo: false
3
4go:
5 - 1.11.x
6 - 1.12.x
7 - 1.13.x
8 - master
9
10matrix:
11 fast_finish: true
12 include:
13 - go: 1.11.x
14 env: GO111MODULE=on
15 - go: 1.12.x
16 env: GO111MODULE=on
17
18install:
19 - go get -d -t -v
20 - go get github.com/campoy/embedmd
21
22script:
23 - embedmd -d *.md
24 - go test -v -covermode=atomic -coverprofile=coverage.out .
25
26after_success:
27 - bash <(curl -s https://codecov.io/bash)
28
29notifications:
30 webhooks:
31 urls:
32 - https://webhooks.gitter.im/e/acc2c57482e94b44f557
33 on_success: change
34 on_failure: always
35 on_start: false
View as plain text