mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-06-02 15:10:46 +00:00
27 lines
510 B
YAML
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)
|