forked from opsgenie/oec
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Open Source Component File * Change packaging to gomod and add travis ci
- Loading branch information
Cem Küçük
authored
Mar 16, 2020
1 parent
ba57880
commit 53af3d3
Showing
1,146 changed files
with
418,221 additions
and
492 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,4 @@ | |
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
vendor/* | ||
.idea/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
language: go | ||
go: | ||
- 1.12.x | ||
- 1.13.x | ||
- 1.14.x | ||
os: | ||
- linux | ||
- osx | ||
- windows | ||
|
||
env: | ||
- GO111MODULE=on | ||
|
||
install: | ||
- go get golang.org/x/tools/cmd/cover | ||
- go get github.com/mattn/goveralls | ||
|
||
script: | ||
- go test ./... -v -covermode=count -coverprofile=coverage.out | ||
|
||
after_success: | ||
- goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_REPO_TOKEN | ||
|
Oops, something went wrong.