2018-04-26 01:15:07 +00:00
|
|
|
language: go
|
2018-04-25 22:51:17 +00:00
|
|
|
|
|
|
|
# Only the last two Go releases are supported by the Go team with security
|
|
|
|
# updates. Any versions older than that should be considered deprecated.
|
|
|
|
# Don't bother testing with them. tip builds your code with the latest
|
|
|
|
# development version of Go. This can warn you that your code will break
|
|
|
|
# in the next version of Go. Don't worry! Later we declare that test runs
|
|
|
|
# are allowed to fail on Go tip.
|
|
|
|
go:
|
2018-09-27 22:18:35 +00:00
|
|
|
- 1.11.x
|
2018-04-25 22:51:17 +00:00
|
|
|
- master
|
|
|
|
|
2018-04-26 01:00:24 +00:00
|
|
|
# Setting this to true will skip the `go get` dependencies step.
|
|
|
|
install: true
|
2018-04-25 22:51:17 +00:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
allow_failures:
|
2018-04-26 01:00:24 +00:00
|
|
|
- go: master # It's ok if our code fails on unstable development versions of Go.
|
2018-04-25 22:51:17 +00:00
|
|
|
# Don't wait for tip tests to finish. Mark the test run green if the
|
|
|
|
# tests pass on the stable versions of Go.
|
|
|
|
fast_finish: true
|
|
|
|
|
|
|
|
# Anything in before_script that returns a nonzero exit code will
|
|
|
|
# flunk the build and immediately stop. It's sorta like having
|
|
|
|
# set -e enabled in bash.
|
|
|
|
before_script:
|
2018-04-26 19:00:29 +00:00
|
|
|
- GO_FILES=$(find . -iname '*.go' -type f | grep -v /vendor/) # All the .go files, excluding vendor/
|
2018-10-18 01:49:59 +00:00
|
|
|
- go get golang.org/x/lint/golint # Linter
|
2018-04-26 09:24:37 +00:00
|
|
|
- go get honnef.co/go/tools/cmd/megacheck # Badass static analyzer/linter
|
|
|
|
- go get github.com/fzipp/gocyclo # Cyclomatic complexity
|
|
|
|
- npm install -g typescript # TypeScript
|
|
|
|
- git clone --depth=1 https://github.com/animenotifier/database ~/.aero/db/arn # Database
|
2018-04-25 22:51:17 +00:00
|
|
|
|
|
|
|
# script always run to completion (set +e). All of these code checks are must haves
|
|
|
|
# in a modern Go project.
|
|
|
|
script:
|
2018-04-26 01:44:03 +00:00
|
|
|
- make deps # Get dependencies. Allow this to fail because components cannot be found.
|
|
|
|
- make all # Build
|
2018-04-26 01:00:24 +00:00
|
|
|
# - test -z $(gofmt -s -l $GO_FILES) # Fail if a .go file hasn't been formatted with gofmt
|
2018-04-26 09:24:37 +00:00
|
|
|
- go test -v . # Run all the tests
|
2018-04-25 23:46:26 +00:00
|
|
|
# - go test -v -race ./... # Run all the tests with the race detector enabled
|
2018-04-25 22:51:17 +00:00
|
|
|
- go vet ./... # go vet is the official Go static analyzer
|
|
|
|
- megacheck ./... # "go vet on steroids" + linter
|
2018-04-26 18:55:46 +00:00
|
|
|
- gocyclo -over 19 $GO_FILES # forbid code with huge functions
|
2018-04-25 22:51:17 +00:00
|
|
|
- golint -set_exit_status $(go list ./...) # one last linter
|