зеркало из https://github.com/microsoft/fabrikate.git
24 строки
495 B
YAML
24 строки
495 B
YAML
# This actually tells Travis to use the fast container-based test runner instead of the slow VM-based runner.
|
|
sudo: false
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.11.x
|
|
|
|
# Force-enable Go modules. This will be unnecessary when Go 1.12 lands.
|
|
env:
|
|
- GO111MODULE=on
|
|
|
|
# Only clone the most recent commit.
|
|
git:
|
|
depth: 1
|
|
|
|
# Make sure golangci-lint is vendored.
|
|
before_script:
|
|
- go install -mod vendor github.com/golangci/golangci-lint/cmd/golangci-lint
|
|
|
|
script:
|
|
- golangci-lint run
|
|
- go test -v -race ./...
|