You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
245 B
YAML
22 lines
245 B
YAML
6 years ago
|
dist: trusty
|
||
|
sudo: required
|
||
|
|
||
|
services:
|
||
|
- docker
|
||
|
|
||
|
language: go
|
||
|
|
||
|
go:
|
||
|
- "1.11.x"
|
||
|
|
||
|
|
||
|
install:
|
||
|
- export GO111MODULE=on
|
||
|
|
||
|
script:
|
||
|
- go build ./...
|
||
|
- go test -c -o test ./
|
||
|
- sudo ./test -test.v
|
||
|
- go test -c -o test ./copy
|
||
|
- sudo ./test -test.v
|