File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ sudo: false
3
3
language : go
4
4
5
5
go :
6
- - 1.11
6
+ - 1.11.x
7
7
8
8
script :
9
9
- go version
Original file line number Diff line number Diff line change 1
1
export GO111MODULE := on
2
2
3
+ .PHONY : all
3
4
all : clean lint test
4
5
6
+ .PHONY : test
5
7
test :
6
8
go test -v ./...
7
9
10
+ .PHONY : lint
8
11
lint : testdeps
9
12
go vet ./...
10
13
golint -set_exit_status ./...
11
14
15
+ .PHONY : testdeps
12
16
testdeps :
13
17
go get -d -v -t ./...
14
18
GO111MODULE=off go get golang.org/x/lint/golint
15
19
20
+ .PHONY : clean
16
21
clean :
17
22
go clean
18
-
19
- .PHONY : test lint testdeps clean
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ func main() {
73
73
74
74
## LICENSE
75
75
```
76
- Copyright 2017 Hatena Co., Ltd.
76
+ Copyright 2017-2019 Hatena Co., Ltd.
77
77
78
78
Licensed under the Apache License, Version 2.0 (the "License");
79
79
you may not use this file except in compliance with the License.
You can’t perform that action at this time.
0 commit comments