mirror of
https://github.com/adnanh/webhook.git
synced 2025-05-28 08:12:28 +00:00
When go.mod specifies go 1.14 or higher, the go tools now verify that vendor/modules.txt is consistent with go.mod. Fixed by running `go mod vendor`.
32 lines
352 B
YAML
32 lines
352 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.14.x
|
|
- master
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
|
|
arch:
|
|
- amd64
|
|
- arm64
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- go: master
|
|
exclude:
|
|
- os: windows
|
|
go: master
|
|
- os: windows
|
|
arch: arm64
|
|
- os: osx
|
|
arch: arm64
|
|
|
|
install:
|
|
- go get -d -v -t ./...
|
|
|
|
script:
|
|
- go test -v -race ./...
|