2016-10-06 15:14:26 +01:00
|
|
|
language: go
|
|
|
|
|
|
|
|
sudo: false
|
|
|
|
|
2019-12-23 21:22:52 +05:30
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
2020-01-25 16:51:10 +05:30
|
|
|
jobs:
|
|
|
|
include:
|
|
|
|
- os: linux
|
2020-08-15 18:02:13 +01:00
|
|
|
go: 1.x
|
2020-01-25 16:51:10 +05:30
|
|
|
- os: osx
|
2020-08-15 18:02:13 +01:00
|
|
|
go: 1.x
|
2020-01-25 16:51:10 +05:30
|
|
|
- os: windows
|
2020-08-15 18:02:13 +01:00
|
|
|
go: 1.x
|
2016-10-06 15:14:26 +01:00
|
|
|
|
|
|
|
before_install:
|
2018-11-14 14:33:29 +01:00
|
|
|
- go get golang.org/x/lint/golint
|
2016-10-06 15:14:26 +01:00
|
|
|
|
|
|
|
before_script:
|
|
|
|
- go vet ./...
|
|
|
|
- golint ./...
|
|
|
|
|
|
|
|
script:
|
|
|
|
- go test -v ./...
|