Updated travis file
This commit is contained in:
parent
720fe55319
commit
54bfdebcf5
13
.travis.yml
13
.travis.yml
@ -28,11 +28,12 @@ notifications:
|
|||||||
# flunk the build and immediately stop. It's sorta like having
|
# flunk the build and immediately stop. It's sorta like having
|
||||||
# set -e enabled in bash.
|
# set -e enabled in bash.
|
||||||
before_script:
|
before_script:
|
||||||
# - GO_FILES=$(find . -iname '*.go' -type f | grep -v /vendor/) # All the .go files, excluding vendor/
|
# - GO_FILES=$(find . -iname '*.go' -type f | grep -v /vendor/) # All the .go files, excluding vendor/
|
||||||
- go get github.com/golang/lint/golint # Linter
|
- go get github.com/golang/lint/golint # Linter
|
||||||
- go get honnef.co/go/tools/cmd/megacheck # Badass static analyzer/linter
|
- go get honnef.co/go/tools/cmd/megacheck # Badass static analyzer/linter
|
||||||
- go get github.com/fzipp/gocyclo
|
- go get github.com/fzipp/gocyclo # Cyclomatic complexity
|
||||||
- npm install -g typescript
|
- npm install -g typescript # TypeScript
|
||||||
|
- git clone --depth=1 https://github.com/animenotifier/database ~/.aero/db/arn # Database
|
||||||
|
|
||||||
# script always run to completion (set +e). All of these code checks are must haves
|
# script always run to completion (set +e). All of these code checks are must haves
|
||||||
# in a modern Go project.
|
# in a modern Go project.
|
||||||
@ -40,7 +41,7 @@ script:
|
|||||||
- make deps # Get dependencies. Allow this to fail because components cannot be found.
|
- make deps # Get dependencies. Allow this to fail because components cannot be found.
|
||||||
- make all # Build
|
- make all # Build
|
||||||
# - test -z $(gofmt -s -l $GO_FILES) # Fail if a .go file hasn't been formatted with gofmt
|
# - test -z $(gofmt -s -l $GO_FILES) # Fail if a .go file hasn't been formatted with gofmt
|
||||||
# - go test -v . # Run all the tests
|
- go test -v . # Run all the tests
|
||||||
# - go test -v -race ./... # Run all the tests with the race detector enabled
|
# - go test -v -race ./... # Run all the tests with the race detector enabled
|
||||||
- go vet ./... # go vet is the official Go static analyzer
|
- go vet ./... # go vet is the official Go static analyzer
|
||||||
- megacheck ./... # "go vet on steroids" + linter
|
- megacheck ./... # "go vet on steroids" + linter
|
||||||
|
Loading…
Reference in New Issue
Block a user