mirror of
https://github.com/adnanh/webhook.git
synced 2025-07-31 23:10:28 +00:00
33 lines
363 B
YAML
33 lines
363 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.12.x
|
|
- 1.13.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 ./...
|