14 lines
241 B
YAML
14 lines
241 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.13
|
|
|
|
before_install:
|
|
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b $GOPATH/bin v1.33.0
|
|
|
|
script:
|
|
- go mod vendor
|
|
- go mod download
|
|
# - make lint-ci
|
|
- make test
|