File tree 3 files changed +12
-11
lines changed
3 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 1
1
language : go
2
2
3
3
go :
4
- - 1.12
5
- - 1.11
6
- - tip
4
+ - 1.12.x
5
+ - 1.11.x
6
+ - tip
7
7
8
8
env : GO111MODULE=on
9
9
10
10
before_install :
11
11
- go mod download
12
12
13
- install :
13
+ install :
14
14
- go get golang.org/x/lint/golint
15
15
- go get github.com/haya14busa/goverage
16
16
@@ -28,9 +28,9 @@ before_script:
28
28
29
29
script :
30
30
- diff -u <(echo -n) <(gofmt -d ./) # Fail if a .go file hasn't been formatted with gofmt
31
- - goverage -v -covermode=atomic -coverprofile=coverage.txt $PKGS # Run all tests with coverage
31
+ - goverage -v -covermode=atomic -coverprofile=coverage.txt $PKGS # Run all tests with coverage
32
32
- go vet -v ./... # static analyisis
33
33
- golint $LINT_PKGS # lint - ignore failures for now
34
-
34
+
35
35
after_success :
36
36
- bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change 1
1
module github.com/aws/aws-lambda-go
2
2
3
+ go 1.12
4
+
3
5
require (
4
- github.com/davecgh/go-spew v1.1.0 // indirect
5
- github.com/pmezard/go-difflib v1.0.0 // indirect
6
- github.com/stretchr/testify v1.2.1
6
+ github.com/stretchr/testify v1.3.0
7
7
gopkg.in/urfave/cli.v1 v1.20.0
8
8
)
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8
2
2
github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
3
3
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
4
4
github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
5
- github.com/stretchr/testify v1.2.1 h1:52QO5WkIUcHGIR7EnGagH88x1bUzqGXTC5/1bDTUQ7U =
6
- github.com/stretchr/testify v1.2.1 /go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs =
5
+ github.com/stretchr/objx v0.1.0 /go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME =
6
+ github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q =
7
+ github.com/stretchr/testify v1.3.0 /go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI =
7
8
gopkg.in/urfave/cli.v1 v1.20.0 h1:NdAVW6RYxDif9DhDHaAortIu956m2c0v+09AZBPTbE0 =
8
9
gopkg.in/urfave/cli.v1 v1.20.0 /go.mod h1:vuBzUtMdQeixQj8LVd+/98pzhxNGQoyuPBlsXHOQNO0 =
You can’t perform that action at this time.
0 commit comments