forked from AlexStocks/getty
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
718 additions
and
530 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Comment to a new issue. | ||
issueOpened: > | ||
Thank your for raising a issue. We will try and get back to you as soon as possible. | ||
Please make sure you have given us as much context as possible. | ||
pullRequestOpened: > | ||
Thank your for raising your pull request. | ||
Please make sure you have followed our contributing guidelines. We will review it as soon as possible |
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 |
---|---|---|
|
@@ -19,6 +19,4 @@ classes | |
# vim | ||
*.swp | ||
|
||
# go mod | ||
go.mod | ||
go.sum | ||
vendor/ |
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 |
---|---|---|
@@ -1,11 +1,17 @@ | ||
language: go | ||
|
||
go: | ||
- "1.11" | ||
- "1.12" | ||
- "1.13" | ||
|
||
env: | ||
- GO111MODULE=on | ||
|
||
script: | ||
- go fmt ./... && [[ -z `git status -s` ]] | ||
- GO111MODULE=on && go mod vendor && go test ./... -bench . -race -v | ||
- go mod vendor && go test $(go list ./... | grep -v vendor | grep -v demo) -coverprofile=coverage.txt -covermode=atomic | ||
|
||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) | ||
|
||
notifications: | ||
webhooks: https://oapi.dingtalk.com/robot/send?access_token=75f4f1ec3868508aa89e5a5d6f9d342216809df3ebc8a78c8ae8722848e06166 |
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
Oops, something went wrong.