Files
gocryptotrader/.travis.yml
Ryan O'Hara-Reid 5dd0fecc62 Adds go module support that came into effect in go version 1.11 (#201)
Adds go module support that came into effect in go version 1.11
2018-11-01 17:40:54 +11:00

27 lines
521 B
YAML

matrix:
include:
- language: node_js
node_js:
- '10'
- '8'
- '6'
before_install:
- cd web/
install:
- npm install
script:
- npm run lint
- npm run build
- language: go
go:
- 1.11.x
env:
- GO111MODULE=on
install: true
script:
- go test -race -coverprofile=./testdata/coverage.txt -covermode=atomic ./...
after_success:
- bash <(curl -s https://codecov.io/bash)