Skip to content

Commit 7021e2e

Browse files
author
Christian Haeusler
committed
Add TravisCI config
1 parent 8306bb4 commit 7021e2e

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.dll
4+
*.so
5+
*.dylib
6+
7+
# Test binary, build with `go test -c`
8+
*.test
9+
10+
# Output of the go coverage tool, specifically when used with LiteIDE
11+
*.out
12+
coverage.txt
13+
14+
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
15+
.glide/
16+
17+
# Golang project vendor packages which should be ignored
18+
vendor/

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: go
2+
3+
go:
4+
- 1.8
5+
- 1.9
6+
- tip
7+
8+
go_import_path: gopkg.in/corvus-ch/shamir.v1
9+
10+
script:
11+
- go test -coverprofile=coverage.txt -covermode=atomic -v .
12+
13+
after_success:
14+
- bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)