Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: go

go:
- 1.5.1
- 1.x

notifications:
email:
Expand All @@ -10,11 +10,17 @@ notifications:
on_success: change
on_failure: change

env:
global:
- GO111MODULE=on
#COVERALLS_TOKEN
- secure: "i8j1qYXRo8PW/lVRsM4pFJbleA2xCygZhQ+TEzuG8JuM40Kj4eUQ5zeOalUN4fuBVpKBL+RLoi+aU+axhgVTyKWDjGaB8ckRuehFdMeOuRaw+bMQGzjWWyNF4lHfViT3vCLrcIK3dZyZMTestB1Nnhl6Rw6089GUkRSX7hS3Ys4zhyrjK5rz3z9I4C+vtft0BnZgLUtVG2THmCae8lt3iZykmfLqn9sg0OpIMGRwqTjRIrG00lt3MxNy3eAURMv5kKciGKRhlUDOgVOnMt/QfHpFHsdnsI+8T0eP481N6uvj4GDXH58FNiv7PM30La5NVyGq3D3cwHK8GXloZf+02Pb53oL4WQR1QoG736RNYAYeXOEM/L07s0cNIg+ZslTR8nTk1t6V4njwaeGhrexvmJOtIsTPLMEy1omxFcqUjrx1aWK2vwGPcVdxFKxoaM+8CQyBoHen2q51CH+j9m5f0euTs/Rdfq6hKdtEgnq+Q/Rw2xYW+9UyIGUqfuUawFHppeaWZ/6tvRDfss4XPOw+x3Y9NMhop0rNM5kaTDzF78azyTOeN1Nsy6slW4CLZ/bb0DWq6fkqVF/n9OkNBO17zi2GCnbyGHYk2n4OB2QB68tQekfc57AS/RDrT1pwD+J8jvbX7ysXJ3UvNljNhUvRRytOCJzOqJ7+PkHYPHBL94U="

install:
- ./bin/travis/install.sh
- ./bin/travis/install

script:
- ./bin/travis/test_coverage.sh
- ./bin/travis/test-coverage

after_success:
- ./bin/coveralls/push.sh
- ./bin/coveralls/push
37 changes: 0 additions & 37 deletions bin/bump_version.sh

This file was deleted.

File renamed without changes.
6 changes: 5 additions & 1 deletion bin/travis/install.sh → bin/travis/install
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/bin/sh

echo $PWD
echo $GOPATH

go get github.com/axw/gocov/gocov
go get github.com/ericelsken/goveralls
go get -t ./...

go get ./...
File renamed without changes.
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
module github.com/gogolfing/config

go 1.12