aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 49aa5629e480756445218fe30abb1a2b0b799603 (plain) (blame)
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
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)

branches:
  except:
    - /^dependabot\/.*$/