File tree 6 files changed +11
-10
lines changed
6 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 12
12
- uses : actions/checkout@v2
13
13
- uses : actions/setup-go@v2
14
14
with :
15
- go-version : 1.14 .x
15
+ go-version : 1.15 .x
16
16
- name : get dependencies
17
17
run : go get -v -t -d ./...
18
18
- name : test race
Original file line number Diff line number Diff line change 11
11
- uses : actions/checkout@v2
12
12
- uses : actions/setup-go@v2
13
13
with :
14
- go-version : 1.14 .x
14
+ go-version : 1.15 .x
15
15
- name : get dependencies
16
16
run : go get -v -t -d ./...
17
17
- name : vendoring
39
39
steps :
40
40
- uses : actions/setup-go@v2
41
41
with :
42
- go-version : 1.14 .x
42
+ go-version : 1.15 .x
43
43
- uses : actions/download-artifact@v2
44
44
with :
45
45
name : repository
53
53
steps :
54
54
- uses : actions/setup-go@v2
55
55
with :
56
- go-version : 1.14 .x
56
+ go-version : 1.15 .x
57
57
- uses : actions/download-artifact@v2
58
58
with :
59
59
name : repository
69
69
steps :
70
70
- uses : actions/setup-go@v2
71
71
with :
72
- go-version : 1.14 .x
72
+ go-version : 1.15 .x
73
73
- uses : actions/download-artifact@v2
74
74
with :
75
75
name : repository
Original file line number Diff line number Diff line change 1
1
linters :
2
2
enable :
3
3
- unparam
4
- - scopelint
4
+ - exportloopref
Original file line number Diff line number Diff line change 2
2
3
3
An analyzer that finds exporting pointers for loop variables.
4
4
5
+ [ ![ PkgGoDev] ( https://pkg.go.dev/badge/kyoh86/exportloopref )] ( https://pkg.go.dev/kyoh86/exportloopref )
5
6
[ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/kyoh86/exportloopref )] ( https://goreportcard.com/report/github.com/kyoh86/exportloopref )
6
7
[ ![ Coverage Status] ( https://img.shields.io/codecov/c/github/kyoh86/exportloopref.svg )] ( https://codecov.io/gh/kyoh86/exportloopref )
7
8
[ ![ Release] ( https://github.com/kyoh86/exportloopref/workflows/Release/badge.svg )] ( https://github.com/kyoh86/exportloopref/releases )
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ module github.com/kyoh86/exportloopref
2
2
3
3
go 1.14
4
4
5
- require golang.org/x/tools v0.0.0-20200321224714-0d839f3cf2ed
5
+ require golang.org/x/tools v0.0.0-20200622203043-20e05c1c8ffa
Original file line number Diff line number Diff line change 1
- github.com/yuin/goldmark v1.1.25 /go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74 =
1
+ github.com/yuin/goldmark v1.1.27 /go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74 =
2
2
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 /go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w =
3
3
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 /go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI =
4
4
golang.org/x/mod v0.2.0 h1:KU7oHjnv3XNWfa5COkzUifxZmxp1TyI7ImMXqFxLwvQ =
@@ -12,8 +12,8 @@ golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5h
12
12
golang.org/x/sys v0.0.0-20190412213103-97732733099d /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
13
13
golang.org/x/text v0.3.0 /go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ =
14
14
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e /go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo =
15
- golang.org/x/tools v0.0.0-20200321224714-0d839f3cf2ed h1:OCZDlBlLYiUK6T33/8+3BnojrS2W+Dg1rKYJhR89xGE =
16
- golang.org/x/tools v0.0.0-20200321224714-0d839f3cf2ed /go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8 =
15
+ golang.org/x/tools v0.0.0-20200622203043-20e05c1c8ffa h1:mMXQKlWCw9mIWgVLLfiycDZjMHMMYqiuakI4E/l2xcA =
16
+ golang.org/x/tools v0.0.0-20200622203043-20e05c1c8ffa /go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE =
17
17
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 /go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0 =
18
18
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898 /go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0 =
19
19
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4 =
You can’t perform that action at this time.
0 commit comments