File tree 3 files changed +7
-9
lines changed
3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 1
1
alias :
2
2
default : &default
3
- working_directory : /go/src/github.com/kpango/glg
4
3
docker :
5
- - image : circleci /go:1.19
4
+ - image : cimg /go:1.19.3
6
5
environment :
7
- GOPATH : " /go"
8
6
GO111MODULE : " on"
9
7
REPO_NAME : " kpango"
10
8
IMAGE_NAME : " glg"
11
9
GITHUB_API : " https://api.github.com/"
12
10
DOCKER_USER : " kpango"
13
11
setup_remote_docker : &setup_remote_docker
14
- version : 19.03.4
15
- docker_layer_caching : true
12
+ version : 20.10.18
16
13
17
14
version : 2
18
15
jobs :
@@ -29,12 +26,13 @@ jobs:
29
26
- run :
30
27
name : run tests
31
28
command : |
29
+ rm -rf example
32
30
go test -v -timeout 1h -race -covermode=atomic -coverprofile=coverage.out ./...
33
31
go tool cover -html=coverage.out -o coverage.html
34
32
bash <(curl -s https://codecov.io/bash)
35
33
no_output_timeout : 1.5h
36
34
- store_artifacts :
37
- path : ./coverage.html
35
+ gath : ./coverage.html
38
36
- save_cache :
39
37
key : gosum-{{ .Branch }}-{{ checksum "go.sum" }}
40
38
paths :
Original file line number Diff line number Diff line change 4
4
5
5
require (
6
6
github.com/goccy/go-json v0.9.11
7
- github.com/kpango/fastime v1.1.5
7
+ github.com/kpango/fastime v1.1.6
8
8
github.com/sirupsen/logrus v1.9.0
9
9
go.uber.org/zap v1.23.0
10
10
)
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
4
4
github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
5
5
github.com/goccy/go-json v0.9.11 h1:/pAaQDLHEoCq/5FFmSKBswWmK6H0e8g4159Kc/X/nqk =
6
6
github.com/goccy/go-json v0.9.11 /go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I =
7
- github.com/kpango/fastime v1.1.5 h1:XbMbgoQM6Q5fpoERI3nWjspzqTgWdN+6KLMvtSHgD2g =
8
- github.com/kpango/fastime v1.1.5 /go.mod h1:tTNDbIo5qL6D7g5vh2YbkyUbOVP2kD/we3rSjN22PMY =
7
+ github.com/kpango/fastime v1.1.6 h1:lAw1Tiwnlbsx1xZs6W9eM7/8niwabknewbmLkh/yTVo =
8
+ github.com/kpango/fastime v1.1.6 /go.mod h1:tTNDbIo5qL6D7g5vh2YbkyUbOVP2kD/we3rSjN22PMY =
9
9
github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I =
10
10
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
11
11
github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
You can’t perform that action at this time.
0 commit comments