Skip to content
Snippets Groups Projects
.travis.yml 279 B
Newer Older
fangyincheng's avatar
fangyincheng committed
language: go

go:
  - "1.12"
fangyincheng's avatar
fangyincheng committed

env:
  - GO111MODULE=on

install: true

script:
  - go fmt ./... && [[ -z `git status -s` ]]
  - go mod vendor && go test ./... -coverprofile=coverage.txt -covermode=atomic

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