57 lines
2.8 KiB
YAML
Raw Normal View History

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:
2019-03-12 05:09:17 +00:00
- 1.12.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
2019-03-29 14:36:43 +00:00
env:
2019-03-29 14:53:33 +00:00
global:
- GO111MODULE=on
- ARN_ROOT=$TRAVIS_BUILD_DIR
2019-03-29 14:36:43 +00:00
2018-04-25 22:51:17 +00:00
# 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:
2019-04-25 00:36:45 +00:00
- go install github.com/mgechev/revive # Linter
- go install honnef.co/go/tools/cmd/staticcheck # Badass static analyzer/linter
- go install github.com/fzipp/gocyclo # Cyclomatic complexity
# - go install github.com/3rf/codecoroner # Dead code analysis
- go install github.com/dustin/go-humanize # Dependency used in pixy files only
2018-04-26 09:24:37 +00:00
- npm install -g typescript # TypeScript
- git clone --depth=1 https://github.com/animenotifier/database ~/.aero/db/arn # Database
2019-04-20 03:51:25 +00:00
- make tools # Install tools
2019-04-25 00:36:45 +00:00
- go mod download # Download dependencies (required for pack)
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:
2019-04-22 06:59:45 +00:00
- tsc # Compile scripts
2019-04-20 03:51:25 +00:00
- pack # Pack assets
2019-04-21 04:38:56 +00:00
- revive ./... # Linter
2019-03-06 02:02:49 +00:00
- go vet ./... # go vet is the official Go static analyzer
2019-04-21 04:38:56 +00:00
- gocyclo -over 19 ./ # forbid code with huge functions
# - go test -v -race ./... # Run all the tests with the race detector enabled
2019-04-20 03:34:13 +00:00
# - codecoroner -ignore components funcs ./... # dead code analysis
- staticcheck -checks all,-ST1000,-ST1005 ./... # static analysis
- make server bots jobs patches # Build
- go test -v . # Run all the tests
2019-03-06 02:02:49 +00:00
after_success:
- bash <(curl -s https://codecov.io/bash)