We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a58586 commit 319e4b3Copy full SHA for 319e4b3
.travis.yml
@@ -27,10 +27,10 @@ before_script:
27
- LINT_PKGS=$(go list ./... | grep -Ev 'aws-lambda-go/lambda')
28
29
script:
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
32
- - go vet -v ./... # static analyisis
33
- - golint $LINT_PKGS # lint - ignore failures for now
+ - diff -u <(echo -n) <(gofmt -d ./) # Fail if a .go file hasn't been formatted with gofmt
+ - goverage -v -race -covermode=atomic -coverprofile=coverage.txt $PKGS # Run all tests with coverage
+ - go vet -v ./... # static analyisis
+ - golint $LINT_PKGS # lint - ignore failures for now
34
35
after_success:
36
- bash <(curl -s https://codecov.io/bash)
0 commit comments