blob: e9bd7a7650318c052dc97473632a032fb136c4e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
language: go
go:
- 1.10.x
- 1.11.x
go_import_path: mvdan.cc/xurls
env:
- GO111MODULE=on
install: true
script:
- go get -t -d ./...
- go build ./...
- go test ./...
|