File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 5
5
build :
6
6
name : Build
7
7
runs-on : ubuntu-latest
8
+ strategy :
9
+ matrix :
10
+ go : ['1.13', '1.14', '1.15']
8
11
steps :
9
12
10
- - name : Set up Go 1.14
11
- uses : actions/setup-go@v1
13
+ - uses : actions/checkout@v2
14
+ - name : Set up Go ${{ matrix.go }}
15
+ uses : actions/setup-go@v2
12
16
with :
13
- go-version : 1.14
14
- id : go
15
-
16
- - name : Check out code into the Go module directory
17
- uses : actions/checkout@v1
17
+ go-version : ${{ matrix.go }}
18
18
19
19
- name : Deps
20
20
run : go mod download
Original file line number Diff line number Diff line change 1
1
module github.com/apex/log
2
2
3
- go 1.12
3
+ go 1.13
4
4
5
5
require (
6
6
github.com/apex/logs v1.0.0
@@ -15,7 +15,7 @@ require (
15
15
github.com/jpillora/backoff v0.0.0-20180909062703-3050d21c67d7 // indirect
16
16
github.com/kr/pretty v0.2.0 // indirect
17
17
github.com/mattn/go-colorable v0.1.2
18
- github.com/pkg/errors v0.8 .1
18
+ github.com/pkg/errors v0.9 .1
19
19
github.com/rogpeppe/fastuuid v1.1.0
20
20
github.com/smartystreets/go-aws-auth v0.0.0-20180515143844-0c1422d1fdb9 // indirect
21
21
github.com/smartystreets/gunit v1.0.0 // indirect
Original file line number Diff line number Diff line change @@ -49,8 +49,8 @@ github.com/onsi/ginkgo v1.6.0 h1:Ix8l273rp3QzYgXSR+c8d1fTG7UPgYkOSELPhiY/YGw=
49
49
github.com/onsi/ginkgo v1.6.0 /go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE =
50
50
github.com/onsi/gomega v1.5.0 h1:izbySO9zDPmjJ8rDjLvkA2zJHIo+HkYXHnf7eN7SSyo =
51
51
github.com/onsi/gomega v1.5.0 /go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY =
52
- github.com/pkg/errors v0.8 .1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I =
53
- github.com/pkg/errors v0.8 .1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
52
+ github.com/pkg/errors v0.9 .1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4 =
53
+ github.com/pkg/errors v0.9 .1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
54
54
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
55
55
github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
56
56
github.com/rogpeppe/fastuuid v1.1.0 h1:INyGLmTCMGFr6OVIb977ghJvABML2CMVjPoRfNDdYDo =
You can’t perform that action at this time.
0 commit comments