19 lines
327 B
YAML
19 lines
327 B
YAML
|
language: go
|
||
|
go:
|
||
|
- "1.6.x"
|
||
|
- "1.7.x"
|
||
|
- "1.8.x"
|
||
|
- "1.9.x"
|
||
|
- "1.10.x"
|
||
|
- "1.11.x"
|
||
|
- "1.12.x"
|
||
|
- "release"
|
||
|
- "tip"
|
||
|
|
||
|
before_install:
|
||
|
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b $GOPATH/bin v1.10
|
||
|
|
||
|
script:
|
||
|
- $GOPATH/bin/golangci-lint run
|
||
|
- make profile_tests
|