-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
38 lines (30 loc) · 919 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
language: go
go:
- 1.13
- tip # The latest version of Go.
before_install:
- go get -t -v ./...
# Skip the install step. Don't `go get` dependencies. Only build with the
# code in vendor/
install: true
matrix:
# It's ok if our code fails on unstable development versions of Go.
allow_failures:
- go: master
# 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
# Don't email me the results of the test runs.
notifications:
email: false
# 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:
- make setup
# script always run to completion (set +e). All of these code checks are must haves
# in a modern Go project.
#script:
# - make lint
after_success:
- bash <(curl -s https://codecov.io/bash)