Files
gocryptotrader/.travis.yml
Adrian Gallagher 291e404a4a Makefile: add new recipes and linter features (#244)
* Makefile: add new recipes and linter features

* expand linter coverage and fix issues

* Update makefile

* address PR nitterinos
2019-01-31 14:53:24 +11:00

27 lines
455 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:
- make check
after_success:
- bash <(curl -s https://codecov.io/bash)