feat(Go-Tool):2020/11/23:修改项目案例(按照一定规则对一组数据进行排序分组)

This commit is contained in:
Huangzj
2020-11-23 11:00:36 +08:00
parent 179e5f6a31
commit 333d7a5d66
47 changed files with 2851 additions and 1469 deletions
+19
View File
@@ -0,0 +1,19 @@
sudo: false
language: go
go:
- 1.7
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get -u github.com/golang/lint/golint
script:
- go vet -x ./...
- golint ./...
- go test -v ./...
- go test -covermode=count -coverprofile=profile.cov
after_script:
- goveralls -coverprofile=profile.cov -service=travis-ci