Skip to content

Commit 35cf2ec

Browse files
committed
Add travis CI testing and codecov report
1 parent 6d35fd9 commit 35cf2ec

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.codecov.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
# Documentation: https://github.com/codecov/support/wiki/codecov.yml
3+
# Validate with: curl --data-binary @.codecov.yml https://codecov.io/validate
4+
5+
codecov:
6+
notify:
7+
require_ci_to_pass: no
8+
9+
comment: false

.travis.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
language: go
2+
3+
go:
4+
- 1.11.x
5+
- 1.12.x
6+
- tip
7+
8+
env:
9+
- GO111MODULE=on
10+
11+
notifications:
12+
email: false
13+
14+
install: true
15+
16+
script:
17+
- make test
18+
19+
after_success:
20+
- bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)