2020-09-01 19:31:23 +05:30
|
|
|
dist: bionic
|
2019-09-05 01:23:54 +05:30
|
|
|
language: go
|
2020-09-01 19:31:23 +05:30
|
|
|
env: GO111MODULE=on GOFLAGS='-mod vendor'
|
|
|
|
install: true
|
|
|
|
email: false
|
2019-09-05 01:23:54 +05:30
|
|
|
|
|
|
|
go:
|
2020-09-01 19:31:23 +05:30
|
|
|
- 1.10
|
|
|
|
- 1.11
|
|
|
|
- 1.12
|
|
|
|
- 1.13
|
2019-09-05 01:23:54 +05:30
|
|
|
- tip
|
|
|
|
|
2020-09-01 19:31:23 +05:30
|
|
|
before_script:
|
|
|
|
- go install github.com/golangci/golangci-lint/cmd/golangci-lint
|
|
|
|
script:
|
|
|
|
- golangci-lint run # run a bunch of code checkers/linters in parallel
|
|
|
|
- go test -v -race ./... # Run all the tests with the race detector enabled
|