Files
gocryptotrader/.travis.yml
2018-11-02 16:20:16 +11:00

27 lines
510 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=coverage.txt -covermode=atomic ./...
after_success:
- bash <(curl -s https://codecov.io/bash)