File tree 5 files changed +369
-29
lines changed
5 files changed +369
-29
lines changed Original file line number Diff line number Diff line change 1
1
language : go
2
2
go :
3
- - 1.13 .x
3
+ - 1.15 .x
4
4
env :
5
5
global :
6
6
- GO111MODULE=on
Original file line number Diff line number Diff line change @@ -13,10 +13,19 @@ test:
13
13
14
14
.PHONEY : cover
15
15
cover :
16
- go test -coverprofile=coverage.txt ./...
16
+ go test -v -race - coverprofile=coverage.txt -covermode=atomic ./...
17
17
18
18
.PHONEY : generate
19
19
generate :
20
20
rm -rf ./appstore/mocks/*
21
21
rm -rf ./playstore/mocks/*
22
22
go generate ./...
23
+
24
+ .PHONEY : update tidy update_all
25
+ update : update_all tidy
26
+
27
+ tidy :
28
+ GO111MODULE=on GOPRIVATE=" github.com/awa/*" go mod tidy
29
+
30
+ update_all :
31
+ GO111MODULE=on GOPRIVATE=" github.com/awa/*" go get -v all
Original file line number Diff line number Diff line change 1
1
go-iap
2
2
======
3
3
4
- ![ ] ( https://img.shields.io/badge/golang-1.13 -blue.svg?style=flat )
4
+ ![ ] ( https://img.shields.io/badge/golang-1.15+ -blue.svg?style=flat )
5
5
[ ![ Build Status] ( https://travis-ci.org/awa/go-iap.svg?branch=master )] ( https://travis-ci.org/awa/go-iap )
6
6
[ ![ codecov.io] ( https://codecov.io/github/awa/go-iap/coverage.svg?branch=master )] ( https://codecov.io/github/awa/go-iap?branch=master )
7
7
Original file line number Diff line number Diff line change 1
1
module github.com/awa/go-iap
2
2
3
- go 1.12
3
+ go 1.15
4
4
5
5
require (
6
- cloud.google.com/go v0.39.0 // indirect
7
- github.com/golang/mock v1.4.0
8
- go.opencensus.io v0.22.0 // indirect
9
- golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
10
- golang.org/x/oauth2 v0.0.0-20190523182746-aaccbc9213b0
11
- golang.org/x/sys v0.0.0-20190530182044-ad28b68e88f1 // indirect
12
- google.golang.org/api v0.5.1-0.20190526001144-9f3a303b451f
13
- google.golang.org/appengine v1.6.5
14
- google.golang.org/genproto v0.0.0-20190530194941-fb225487d101 // indirect
15
- google.golang.org/grpc v1.21.0 // indirect
6
+ cloud.google.com/go v0.74.0 // indirect
7
+ github.com/golang/mock v1.4.4
8
+ golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5
9
+ golang.org/x/sys v0.0.0-20201214095126-aec9a390925b // indirect
10
+ google.golang.org/api v0.36.0
11
+ google.golang.org/appengine v1.6.7
12
+ google.golang.org/genproto v0.0.0-20201211151036-40ec1c210f7a // indirect
16
13
)
You can’t perform that action at this time.
0 commit comments