Skip to content

Commit 6354665

Browse files
committed
Initial commit
0 parents  commit 6354665

File tree

1,848 files changed

+881447
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,848 files changed

+881447
-0
lines changed

.travis.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
sudo: false
2+
3+
dist: trusty
4+
5+
language:
6+
- go
7+
8+
go:
9+
- "1.10"
10+
- "1.11"
11+
12+
git:
13+
depth: 1
14+
15+
install: true
16+
17+
script:
18+
# Verify that all source files are correctly formatted.
19+
- find . -name "*.go" | grep -v vendor/ | xargs gofmt -d -e -l
20+
21+
- go clean -i
22+
- go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
23+
24+
# TODO: Set up coverage.
25+
#after_success:
26+
# - bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)