aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 7087427c7e9f6947c5e35fda4a1bb59f2d018f0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: go

go: 1.13.x

install: true

env:
  - GO111MODULE=on

before_script:

script: 
  - go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
  - go build

cache:
  directories:
    - $HOME/.cache/go-build
    - $HOME/gopath/pkg/mod

after_success:
  - bash <(curl -s https://codecov.io/bash)