Files
gocryptotrader/.travis.yml
Adrian Gallagher b1ed894d99 Bump golangci-lint to v1.18.0 (#354)
* Bump golangci-lint to v0.18.0

* Bump AppVeyor golangci-lint to v1.18

For science

* Bump golangci deadline

* Fix notifications typo

* Fix grammar

* Update DisableNTPCheck test string comparison
2019-09-13 13:36:52 +10:00

50 lines
960 B
YAML

matrix:
include:
- language: node_js
name: 'GoCryptoTrader [front-end]'
node_js:
- '10'
- '8'
- '6'
before_install:
- cd web/
install:
- npm install
script:
- npm run lint
- npm run build
- language: go
dist: xenial
name: 'GoCryptoTrader [back-end] [linux]'
go:
- 1.13.x
env:
- GO111MODULE=on
install: true
cache:
directories:
- $GOPATH/pkg/mod
script:
- make check
after_success:
- bash <(curl -s https://codecov.io/bash)
- language: go
os: osx
name: 'GoCryptoTrader [back-end] [darwin]'
go:
- 1.13.x
env:
- GO111MODULE=on
install: true
cache:
directories:
- $GOPATH/pkg/mod
script:
- make check
after_success:
- bash <(curl -s https://codecov.io/bash)