mirror of
https://github.com/adnanh/webhook.git
synced 2025-08-01 07:20:30 +00:00
Use gofrs/uuid instead of satori/go.uuid
The satori package appears to be unmaintained. The gofrs package is a fork that is actively maintained by a larger group of Go developers.
This commit is contained in:
parent
7b87d6092f
commit
8ff3848ea3
16 changed files with 1019 additions and 578 deletions
23
vendor/github.com/gofrs/uuid/.travis.yml
generated
vendored
Normal file
23
vendor/github.com/gofrs/uuid/.travis.yml
generated
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
language: go
|
||||
sudo: false
|
||||
go:
|
||||
- 1.7.x
|
||||
- 1.8.x
|
||||
- 1.9.x
|
||||
- 1.10.x
|
||||
- 1.11.x
|
||||
- tip
|
||||
matrix:
|
||||
allow_failures:
|
||||
- go: tip
|
||||
fast_finish: true
|
||||
env:
|
||||
- GO111MODULE=on
|
||||
before_install:
|
||||
- go get golang.org/x/tools/cmd/cover
|
||||
script:
|
||||
- go test ./... -race -coverprofile=coverage.txt -covermode=atomic
|
||||
after_success:
|
||||
- bash <(curl -s https://codecov.io/bash)
|
||||
notifications:
|
||||
email: false
|
Loading…
Add table
Add a link
Reference in a new issue