Improved testing
This commit is contained in:
parent
f572a08888
commit
f205b5824c
@ -26,7 +26,7 @@ matrix:
|
||||
before_script:
|
||||
- GO_FILES=$(find . -iname '*.go' -type f | grep -v /vendor/) # All the .go files, excluding vendor/
|
||||
- go get golang.org/x/lint/golint # Linter
|
||||
- go get honnef.co/go/tools/cmd/megacheck # Badass static analyzer/linter
|
||||
- go get honnef.co/go/tools/cmd/staticcheck # Badass static analyzer/linter
|
||||
- go get github.com/fzipp/gocyclo # Cyclomatic complexity
|
||||
- go get github.com/3rf/codecoroner # Dead code analysis
|
||||
- go get github.com/dustin/go-humanize # Dependency used in pixy files only
|
||||
@ -42,8 +42,10 @@ script:
|
||||
- go test -v . # Run all the tests
|
||||
# - go test -v -race ./... # Run all the tests with the race detector enabled
|
||||
- go vet ./... # go vet is the official Go static analyzer
|
||||
- megacheck ./... # "go vet on steroids" + linter
|
||||
- staticcheck -checks all,-ST1000,-ST1005 ./... # static analysis
|
||||
- gocyclo -over 19 $GO_FILES # forbid code with huge functions
|
||||
- golint -set_exit_status $(go list ./...) # one last linter
|
||||
- codecoroner -ignore components funcs ./... # dead code analysis
|
||||
- curl -s https://codecov.io/bash
|
||||
|
||||
after_success:
|
||||
- bash <(curl -s https://codecov.io/bash)
|
Loading…
Reference in New Issue
Block a user